Merge branch 'master' into chart_notice

This commit is contained in:
Dieter Adriaenssens
2010-12-08 20:00:46 +01:00
72 changed files with 5384 additions and 4214 deletions

View File

@@ -372,7 +372,6 @@ $goto_whitelist = array(
'db_printview.php', 'db_printview.php',
'db_search.php', 'db_search.php',
//'Documentation.html', //'Documentation.html',
//'error.php',
'export.php', 'export.php',
'import.php', 'import.php',
//'index.php', //'index.php',

View File

@@ -264,7 +264,7 @@ $strConfigLeftDisplayLogo_desc = __('Show logo in left frame');
$strConfigLeftDisplayLogo_name = __('Display logo'); $strConfigLeftDisplayLogo_name = __('Display logo');
$strConfigLeftDisplayServers_desc = __('Display server choice at the top of the left frame'); $strConfigLeftDisplayServers_desc = __('Display server choice at the top of the left frame');
$strConfigLeftDisplayServers_name = __('Display servers selection'); $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_desc = __('String that separates databases into different tree levels');
$strConfigLeftFrameDBSeparator_name = __('Database tree separator'); $strConfigLeftFrameDBSeparator_name = __('Database tree separator');
$strConfigLeftFrameDBTree_desc = __('Only light version; display databases in a tree (determined by the separator defined below)'); $strConfigLeftFrameDBTree_desc = __('Only light version; display databases in a tree (determined by the separator defined below)');

View File

@@ -235,21 +235,18 @@ function PMA_fatalError($error_message, $message_args = null)
} }
// Displays the error message // Displays the error message
// (do not use & for parameters sent by header) $lang = $GLOBALS['available_languages'][$GLOBALS['lang']][1];
$query_params = array( $dir = $GLOBALS['text_dir'];
'lang' => $GLOBALS['available_languages'][$GLOBALS['lang']][1], $type = $error_header;
'dir' => $GLOBALS['text_dir'], $error = $error_message;
'type' => $error_header,
'error' => $error_message,
);
header('Location: ' . (defined('PMA_SETUP') ? '../' : '') . 'error.php?'
. http_build_query($query_params, null, '&'));
// on fatal errors it cannot hurt to always delete the current session // on fatal errors it cannot hurt to always delete the current session
if (isset($GLOBALS['session_name']) && isset($_COOKIE[$GLOBALS['session_name']])) { if (isset($GLOBALS['session_name']) && isset($_COOKIE[$GLOBALS['session_name']])) {
$GLOBALS['PMA_Config']->removeCookie($GLOBALS['session_name']); $GLOBALS['PMA_Config']->removeCookie($GLOBALS['session_name']);
} }
require('./libraries/error.inc.php');
exit; exit;
} }

View File

@@ -84,11 +84,11 @@ if(isset($_GET['sql_query'])) {
<img src="<?php echo $GLOBALS['pmaThemeImage'];?>b_export.png" alt="export" /> <img src="<?php echo $GLOBALS['pmaThemeImage'];?>b_export.png" alt="export" />
<?php <?php
if($export_type == 'server') { if($export_type == 'server') {
echo __('Exporting databases in the current server'); echo __('Exporting databases from the current server');
} elseif($export_type == 'database') { } elseif($export_type == 'database') {
printf(__('Exporting tables in the database "%s"'), htmlspecialchars($db)); printf(__('Exporting tables from "%s" database'), htmlspecialchars($db));
} else { } else {
printf(__('Exporting rows in the table "%s"'), htmlspecialchars($table)); printf(__('Exporting rows from "%s" table'), htmlspecialchars($table));
}?> }?>
</h2> </h2>
</div> </div>
@@ -110,7 +110,7 @@ if(isset($_GET['sql_query'])) {
} else { } else {
echo ' checked="checked" />'; 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>
<li> <li>
<?php echo '<input type="radio" name="quick_or_custom" value="custom" id="radio_custom_export"'; <?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 { } else {
echo ' />'; 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> </li>
</ul> </ul>
</div> </div>
@@ -333,7 +333,7 @@ if(isset($_GET['sql_query'])) {
</div> </div>
<div class="exportoptions" id="format_specific_opts"> <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> <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); ?> <?php echo PMA_pluginGetOptions('Export', $export_list); ?>
</div> </div>

View File

@@ -6,34 +6,11 @@
* @package phpMyAdmin * @package phpMyAdmin
*/ */
/** if (! defined('PHPMYADMIN')) {
* Input sanitizing. exit;
*/
require './libraries/sanitizing.lib.php';
/* Get variables */
if (! empty($_REQUEST['lang']) && is_string($_REQUEST['lang'])) {
$lang = htmlspecialchars($_REQUEST['lang']);
} else {
$lang = 'en';
} }
if (! empty($_REQUEST['dir']) && is_string($_REQUEST['dir'])) { header('Content-Type: text/html; charset=utf-8');
$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);
?> ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!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; ?>"> <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="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<title>phpMyAdmin</title> <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"> <style type="text/css">
<!-- <!--
html { html {
@@ -73,17 +50,8 @@ header('Content-Type: text/html; charset=' . $charset);
</style> </style>
</head> </head>
<body> <body>
<h1>phpMyAdmin - <?php echo $type; ?></h1> <h1>phpMyAdmin - <?php echo $error_header; ?></h1>
<p><?php <p><?php echo PMA_sanitize($error_message); ?></p>
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>
</body> </body>
</html> </html>

View File

@@ -5,10 +5,6 @@
* @package phpMyAdmin * @package phpMyAdmin
*/ */
/**
* @ignore
*/
define('PMA_MINIMUM_COMMON', true);
/** /**
* Gets core libraries and defines some variables * Gets core libraries and defines some variables
*/ */

147
po/af.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: afrikaans <af@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -865,14 +865,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "" msgstr ""
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1460,37 +1460,37 @@ msgstr "Rekords"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1875,7 +1875,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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, " "quote of 'n kommapunt weg erens.<br />Indien jy 'n bladsy kry wat leeg is, "
"is alles klopdisselboom." "is alles klopdisselboom."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1904,26 +1904,26 @@ msgstr ""
"Die <tt>$cfg['PmaAbsoluteUri']</tt> veranderlike MOET gestel wees in jou " "Die <tt>$cfg['PmaAbsoluteUri']</tt> veranderlike MOET gestel wees in jou "
"konfigurasie leer!" "konfigurasie leer!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "" msgstr ""
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2159,11 +2159,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktuur en 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3176,7 +3176,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4292,7 +4292,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4417,19 +4417,21 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #, fuzzy
msgstr "" #| 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 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Skep 'n nuwe tabel op databasis %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Skep 'n nuwe tabel op databasis %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4438,6 +4440,14 @@ msgstr "Skep 'n nuwe tabel op databasis %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Export" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4556,8 +4566,8 @@ msgstr "\"ge-bzip\""
msgid "Format:" msgid "Format:"
msgstr "Formaat" msgstr "Formaat"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" msgid "Format-specific options:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5900,7 +5914,7 @@ msgstr "geen Beskrywing"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7682,46 +7696,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Slegs struktuur"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Slegs struktuur"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9551,6 +9566,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Hernoem tabel na" msgstr "Hernoem tabel na"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sa"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

148
po/ar.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-05-29 14:16+0200\n"
"Last-Translator: Ahmed <aa.mahdawy.10@gmail.com>\n" "Last-Translator: Ahmed <aa.mahdawy.10@gmail.com>\n"
"Language-Team: arabic <ar@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -868,14 +868,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "لم يمكن قراءة الملف" msgstr "لم يمكن قراءة الملف"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1472,37 +1472,37 @@ msgstr "الثانية"
msgid "Font size" msgid "Font size"
msgstr "حجم الخط" msgstr "حجم الخط"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1888,7 +1888,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1903,12 +1903,12 @@ msgstr ""
"تكون علامة التنصيص أو علامة الفاصلة المنقوطة ناقصة في مكان ما.<br />إن حصلت " "تكون علامة التنصيص أو علامة الفاصلة المنقوطة ناقصة في مكان ما.<br />إن حصلت "
"على صفحة فارغة، فكل شيء على ما يرام." "على صفحة فارغة، فكل شيء على ما يرام."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1916,26 +1916,26 @@ msgstr ""
"المتغير <span dir=\"ltr\"><tt>$cfg['PmaAbsoluteUri']</tt></span> يجب تعديله " "المتغير <span dir=\"ltr\"><tt>$cfg['PmaAbsoluteUri']</tt></span> يجب تعديله "
"في ملف التعريف !" "في ملف التعريف !"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "فهرس خادم غير صحيح: %s" msgstr "فهرس خادم غير صحيح: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "خادم" msgstr "خادم"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "عليك التحديث إلى %s %s أو لاحقا." msgstr "عليك التحديث إلى %s %s أو لاحقا."
@@ -2171,11 +2171,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "البنية والبيانات" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3200,7 +3200,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4313,7 +4313,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4440,19 +4440,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "يسمح بقفل الجداول للعملية الحالية." msgstr "يسمح بقفل الجداول للعملية الحالية."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "تكوين جدول جديد في قاعدة البيانات %s" msgstr "تكوين جدول جديد في قاعدة البيانات %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "تكوين جدول جديد في قاعدة البيانات %s" msgstr "تكوين جدول جديد في قاعدة البيانات %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4461,6 +4461,14 @@ msgstr "تكوين جدول جديد في قاعدة البيانات %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "نوع التصدير" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4585,9 +4593,11 @@ msgstr "\"bzipped\""
msgid "Format:" msgid "Format:"
msgstr "صيغة" msgstr "صيغة"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "خيارات التحويل"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4670,6 +4680,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5938,7 +5952,7 @@ msgstr "بدون وصف"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7767,45 +7781,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "البنية فقط"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "البنية فقط"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "أخطاء." msgstr "أخطاء."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9627,6 +9643,12 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "" msgstr ""
#~ msgid "Start"
#~ msgstr "ابدأ"
#~ msgid "Stop"
#~ msgstr "قف"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

147
po/az.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -865,14 +865,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Fayl oxuna bilmir" msgstr "Fayl oxuna bilmir"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1474,37 +1474,37 @@ msgstr "saniyede"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1888,7 +1888,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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, " "vergül eksikliyi vardır.<br />Eger boş sehife ile qarşılaşsanız, demek ki, "
"her şey qaydasındadır." "her şey qaydasındadır."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1917,26 +1917,26 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> direktivi PMA konfiqurasiya faylınızda " "<tt>$cfg['PmaAbsoluteUri']</tt> direktivi PMA konfiqurasiya faylınızda "
"QURULMAMIŞDIR!" "QURULMAMIŞDIR!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2177,11 +2177,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Quruluş ve me'lumat" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3215,7 +3215,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4340,7 +4340,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4467,19 +4467,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Allows locking tables for the current thread."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "%s bazasında yeni cedvel qur"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "%s bazasında yeni cedvel qur"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4488,6 +4488,14 @@ msgstr "%s bazasında yeni cedvel qur"
msgid "Export Method:" msgid "Export Method:"
msgstr "Eksport şekli" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4612,9 +4620,11 @@ msgstr "\"bzip\"lenmiş"
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformasiya variantları"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4695,6 +4705,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5978,7 +5992,7 @@ msgstr "Haqqında me'lumat (description) mövcud deyildir"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7841,46 +7855,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Sadece quruluş"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Sadece quruluş"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9715,6 +9730,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Cedveli yeniden adlandır" msgstr "Cedveli yeniden adlandır"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Şen"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

148
po/be.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -875,14 +875,14 @@ msgstr ""
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
"абмежаваньне." "абмежаваньне."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Немагчыма прачытаць файл" msgstr "Немагчыма прачытаць файл"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1500,13 +1500,13 @@ msgstr "у сэкунду"
msgid "Font size" msgid "Font size"
msgstr "Памер шрыфта" msgstr "Памер шрыфта"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php." "Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php."
"ini." "ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1514,27 +1514,27 @@ msgstr ""
"Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў " "Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў "
"вызначаны ў HTML-форме." "вызначаны ў HTML-форме."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Файл быў загружаны толькі часткова." msgstr "Файл быў загружаны толькі часткова."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Адсутнічае часовая тэчка." msgstr "Адсутнічае часовая тэчка."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Памылка запісу на дыск." msgstr "Памылка запісу на дыск."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Загрузка файла спыненая пашырэньнем." msgstr "Загрузка файла спыненая пашырэньнем."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Падчас загрузкі файла адбылася невядомая памылка." msgstr "Падчас загрузкі файла адбылася невядомая памылка."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1933,7 +1933,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1949,13 +1949,13 @@ msgstr ""
"пра памылкі. У большасьці выпадкаў, недзе прапушчаны апостраф або кропка з " "пра памылкі. У большасьці выпадкаў, недзе прапушчаны апостраф або кропка з "
"коскай.<br />Калі вы атрымаеце чыстую старонку, значыць, усё добра." "коскай.<br />Калі вы атрымаеце чыстую старонку, значыць, усё добра."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1963,28 +1963,28 @@ msgstr ""
"Дырэктыва <tt>$cfg['PmaAbsoluteUri']</tt> ПАВІННА быць вызначаная ў вашым " "Дырэктыва <tt>$cfg['PmaAbsoluteUri']</tt> ПАВІННА быць вызначаная ў вашым "
"канфігурацыйным файле!" "канфігурацыйным файле!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Некарэктны індэкс сэрвэра: \"%s\"" msgstr "Некарэктны індэкс сэрвэра: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." "Няправільнае імя хосту для сэрвэра %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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Сэрвэр" msgstr "Сэрвэр"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай."
@@ -2226,11 +2226,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Структуру і дадзеныя" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3277,7 +3277,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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 "Колькасьць адкрытых табліц." msgstr "Колькасьць адкрытых табліц."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4424,7 +4424,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4557,19 +4557,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "Дазваляе блякаваць табліцы для бягучага патоку." msgstr "Дазваляе блякаваць табліцы для бягучага патоку."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "Стварыць новую табліцу ў БД %s" msgstr "Стварыць новую табліцу ў БД %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "Стварыць новую табліцу ў БД %s" msgstr "Стварыць новую табліцу ў БД %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4578,6 +4578,15 @@ msgstr "Стварыць новую табліцу ў БД %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Тып экспарту" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4709,9 +4718,11 @@ msgstr "сьціскаць у bzip"
msgid "Format:" msgid "Format:"
msgstr "Фармат" msgstr "Фармат"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Опцыі пераўтварэньня"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4807,6 +4818,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Колькасьць (запытаў), якія трэба прапусьціць ад пачатку" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6148,7 +6163,7 @@ msgstr "няма апісаньня"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -8075,46 +8090,47 @@ msgstr "Поўнатэкстэкставае"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Толькі структуру"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Толькі структуру"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10095,6 +10111,10 @@ msgstr "Назва прагляду"
msgid "Rename view to" msgid "Rename view to"
msgstr "Перайменаваць табліцу ў" msgstr "Перайменаваць табліцу ў"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Суб"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
"abmiežavańnie." "abmiežavańnie."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Niemahčyma pračytać fajł" msgstr "Niemahčyma pračytać fajł"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1501,13 +1501,13 @@ msgstr "u sekundu"
msgid "Font size" msgid "Font size"
msgstr "Pamier šryfta" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php." "Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php."
"ini." "ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1515,27 +1515,27 @@ msgstr ""
"Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ " "Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ "
"vyznačany ŭ HTML-formie." "vyznačany ŭ HTML-formie."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Fajł byŭ zahružany tolki častkova." msgstr "Fajł byŭ zahružany tolki častkova."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Adsutničaje časovaja tečka." msgstr "Adsutničaje časovaja tečka."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Pamyłka zapisu na dysk." msgstr "Pamyłka zapisu na dysk."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Zahruzka fajła spynienaja pašyreńniem." msgstr "Zahruzka fajła spynienaja pašyreńniem."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1937,7 +1937,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "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." "z koskaj. Kali vy atrymajecie čystuju staronku, značyć, usio dobra."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1967,29 +1967,29 @@ msgstr ""
"Dyrektyva $cfg['PmaAbsoluteUri'] PAVINNA być vyznačanaja ŭ vašym " "Dyrektyva $cfg['PmaAbsoluteUri'] PAVINNA być vyznačanaja ŭ vašym "
"kanfihuracyjnym fajle!" "kanfihuracyjnym fajle!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Niekarektny indeks servera: \"%s\"" msgstr "Niekarektny indeks servera: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie "
"kanfihurycyju." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj."
@@ -2229,11 +2229,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Strukturu i dadzienyja" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3260,7 +3260,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "Kolkaść adkrytych tablic."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4391,7 +4391,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4524,19 +4524,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Stvaryć novuju tablicu ŭ BD %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Stvaryć novuju tablicu ŭ BD %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4545,6 +4545,14 @@ msgstr "Stvaryć novuju tablicu ŭ BD %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Typ ekspartu" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4676,9 +4684,11 @@ msgstr "ściskać u bzip"
msgid "Format:" msgid "Format:"
msgstr "Farmat" msgstr "Farmat"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcyi pieraŭtvareńnia"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4775,6 +4785,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Kolkaść (zapytaŭ), jakija treba prapuścić ad pačatku" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6117,7 +6131,7 @@ msgstr "niama apisańnia"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -8039,45 +8053,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Tolki strukturu"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Tolki strukturu"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

147
po/bg.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-06-11 17:28+0200\n"
"Last-Translator: <stanprog@stanprog.com>\n" "Last-Translator: <stanprog@stanprog.com>\n"
"Language-Team: bulgarian <bg@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -866,14 +866,14 @@ msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sdдокументацията%s за да намерите начин да избегнете това ограничение." "към %sdдокументацията%s за да намерите начин да избегнете това ограничение."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Файлът не може да бъде прочетен" msgstr "Файлът не може да бъде прочетен"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1481,37 +1481,37 @@ msgstr "на секунда"
msgid "Font size" msgid "Font size"
msgstr "Размер на шрифта" msgstr "Размер на шрифта"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1904,7 +1904,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1920,13 +1920,13 @@ msgstr ""
"част от случаите, някъде липсват кавички или точка и запетая.<br />Ако се " "част от случаите, някъде липсват кавички или точка и запетая.<br />Ако се "
"изведе празна страница, всички е наред." "изведе празна страница, всички е наред."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Конфигурацията по подразбиране не може да бъде заредена от: \"%1$s\"" msgstr "Конфигурацията по подразбиране не може да бъде заредена от: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1934,26 +1934,26 @@ msgstr ""
"На <tt>$cfg['PmaAbsoluteUri']</tt> ТРЯБВА да се зададе стойност в " "На <tt>$cfg['PmaAbsoluteUri']</tt> ТРЯБВА да се зададе стойност в "
"конфигурационния файл!" "конфигурационния файл!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Сървър" msgstr "Сървър"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Трябва да ъпгрейднете към %s %s или по-късно." msgstr "Трябва да ъпгрейднете към %s %s или по-късно."
@@ -2194,11 +2194,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Структурата и данните" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3235,7 +3235,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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 "Брой на отвотените таблици." msgstr "Брой на отвотените таблици."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4368,7 +4368,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4497,19 +4497,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "Позволява заключване на таблици за текущата нишка." msgstr "Позволява заключване на таблици за текущата нишка."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "Създаване на нова таблица в БД %s" msgstr "Създаване на нова таблица в БД %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "Създаване на нова таблица в БД %s" msgstr "Създаване на нова таблица в БД %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4518,6 +4518,14 @@ msgstr "Създаване на нова таблица в БД %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Тип на експортирането" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4644,9 +4652,11 @@ msgstr "\"bzip-нато\""
msgid "Format:" msgid "Format:"
msgstr "Формат" msgstr "Формат"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Опции на трансформацията"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4732,6 +4742,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Брой записи(завки), които да бъдат пропуснати от началото" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6021,7 +6035,7 @@ msgstr "няма Описание"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7911,46 +7925,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Само структурата"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Само структурата"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9807,6 +9822,10 @@ msgstr "Име на ИЗГЛЕД-а"
msgid "Rename view to" msgid "Rename view to"
msgstr "Преименуване на изгледа на" msgstr "Преименуване на изгледа на"
#, fuzzy
#~ msgid "Start"
#~ msgstr "сб"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

148
po/bn.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin@cyberbogra.com>\n" "Last-Translator: Nobin নবীন <nobin@cyberbogra.com>\n"
"Language-Team: bangla <bn@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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%" "You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit." "s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "ফাইল পড়া যায়নি" msgstr "ফাইল পড়া যায়নি"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1487,37 +1487,37 @@ msgstr "per second"
msgid "Font size" msgid "Font size"
msgstr "ফন্ট এর আকার" msgstr "ফন্ট এর আকার"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1913,7 +1913,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "semicolon is missing somewhere.<br />If you receive a blank page, everything "
"is fine." "is fine."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1943,27 +1943,27 @@ msgstr ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Invalid server index: \"%s\"" msgstr "Invalid server index: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "সার্ভার" msgstr "সার্ভার"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "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 #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "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" msgid "structure and data"
msgstr "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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3255,7 +3255,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "The number of tables that are open."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4390,7 +4390,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4520,19 +4520,19 @@ msgstr "এক্সপোর্ট প্লাগ ইন লোড করা
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Allows locking tables for the current thread."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈরী কর" msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈরী কর"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈরী কর" msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈরী কর"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4541,6 +4541,15 @@ msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈর
msgid "Export Method:" msgid "Export Method:"
msgstr "Export type" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4672,9 +4681,11 @@ msgstr "\"bzipped\""
msgid "Format:" msgid "Format:"
msgstr "ফরমেট" msgstr "ফরমেট"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformation options"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4769,6 +4780,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Number of records(queries) to skip from start" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6075,7 +6090,7 @@ msgstr "কোন বর্ণনা নাই"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7984,46 +7999,47 @@ msgstr "Fulltext"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "শুধুই গঠনপ্রণালী"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "শুধুই গঠনপ্রণালী"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9976,6 +9992,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "টেবিল রিনেম করুন" msgstr "টেবিল রিনেম করুন"
#, fuzzy
#~ msgid "Start"
#~ msgstr "শনিবার"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

147
po/bs.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -867,14 +867,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Datoteku nije moguće pročitati" msgstr "Datoteku nije moguće pročitati"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1472,37 +1472,37 @@ msgstr "u sekundi"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1890,7 +1890,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "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." "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 #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1918,26 +1918,26 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> direktiva MORA biti podješena u " "<tt>$cfg['PmaAbsoluteUri']</tt> direktiva MORA biti podješena u "
"konfiguracionoj datoteci!" "konfiguracionoj datoteci!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2176,11 +2176,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktura i podatci" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3209,7 +3209,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4333,7 +4333,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4460,19 +4460,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Dozvoljava zaključavanje tabela tekućim procesima."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Napravi novu tabelu u bazi %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Napravi novu tabelu u bazi %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4481,6 +4481,14 @@ msgstr "Napravi novu tabelu u bazi %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Izvoz" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4605,9 +4613,11 @@ msgstr "\"bzip-ovano\""
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcije transformacije"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4688,6 +4698,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5965,7 +5979,7 @@ msgstr "nema opisa"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7825,46 +7839,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Samo struktura"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Samo struktura"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9700,6 +9715,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Promjeni ime tabele u " msgstr "Promjeni ime tabele u "
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sub"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

136
po/ca.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-11-29 10:20+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro@gmail.com>\n" "Last-Translator: Xavier Navarro <xvnavarro@gmail.com>\n"
"Language-Team: catalan <ca@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 %" "Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
"sdocumentació%s per trobar formes de modificar aquest límit." "sdocumentació%s per trobar formes de modificar aquest límit."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "No es pot llegir l'arxiu" msgstr "No es pot llegir l'arxiu"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1409,12 +1409,12 @@ msgstr "per segon"
msgid "Font size" msgid "Font size"
msgstr "Tamany de lletra" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini." "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 "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1422,27 +1422,27 @@ msgstr ""
"El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al " "El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al "
"formulari HTML." "formulari HTML."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Només s'ha pujat parcialment l'arxiu." msgstr "Només s'ha pujat parcialment l'arxiu."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "No es troba la carpeta temporal." msgstr "No es troba la carpeta temporal."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Error en gravar l'arxiu al disc." msgstr "Error en gravar l'arxiu al disc."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Pujada de l'arxiu aturada per l'extensió." 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." msgid "Unknown error in file upload."
msgstr "Error desconegut al pujar l'arxiu." msgstr "Error desconegut al pujar l'arxiu."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1847,7 +1847,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "ocasions una coma o punt i coma falta en algun lloc.<br />Si rebs una pàgina "
"en blanc, tot està bé." "en blanc, tot està bé."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "No es pot carregar la configuració per defecte des de: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1877,28 +1877,28 @@ msgstr ""
"La directiva <tt>$cfg['PmaAbsoluteUri']</tt> HA d'estar a l'arxiu de " "La directiva <tt>$cfg['PmaAbsoluteUri']</tt> HA d'estar a l'arxiu de "
"configuració!" "configuració!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Index de servidor invàlid: \"%s\"" msgstr "Index de servidor invàlid: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Servidor" msgstr "Servidor"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Mètode d'identificació incorrecte establert a la configuració:" msgstr "Mètode d'identificació incorrecte establert a la configuració:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Es necessari actualitzar a %s %s o posterior." msgstr "Es necessari actualitzar a %s %s o posterior."
@@ -2138,11 +2138,11 @@ msgstr "dades"
msgid "structure and data" msgid "structure and data"
msgstr "Estructura i dades" 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" msgid "Quick - display only the minimal options to configure"
msgstr "Ràpid - Mostra només les opcions mínimes a configurar." 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" msgid "Custom - display all possible options to configure"
msgstr "Complet - Mostra totes les opcions a configurar" 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 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Màxim nombre de taules mostrades a la llista"
#: libraries/config/messages.inc.php:268 #: 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" msgid "Incorrect IP address: %s"
msgstr "Adreça IP incorrecta: %s" msgstr "Adreça IP incorrecta: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4632,19 +4632,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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ó." msgstr "Permet bloquejar taules per l'actual fil d'execució."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Crear una taula nova a la base de dades %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Crear una taula nova a la base de dades %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4653,6 +4653,18 @@ msgstr "Crear una taula nova a la base de dades %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Tipus d' Exportació" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4786,9 +4798,11 @@ msgstr "\"comprimit amb bzip\""
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcions de Transformació"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4892,6 +4906,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Nombre de registres(consultes) a saltar des de l'inici" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6242,7 +6260,7 @@ msgstr "Sense Descripció"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Configració de l'esclau" 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" msgid "Change or reconfigure master server"
msgstr "Canvia o reconfigura el servidor mestre" msgstr "Canvia o reconfigura el servidor mestre"
@@ -8180,29 +8198,35 @@ msgstr "Parada total"
msgid "Reset slave" msgid "Reset slave"
msgstr "Reinicia l'esclau" msgstr "Reinicia l'esclau"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Només fils SQL %s" msgstr "Només fils SQL %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Inicia" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Només fils SQL %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Para" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Només fils IO %s" 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:" msgid "Error management:"
msgstr "Gestió d'errors:" msgstr "Gestió d'errors:"
#: server_replication.php:332 #: server_replication.php:340
#, fuzzy #, fuzzy
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!" #| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors 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 " "Saltar error(s) podria donar lloc a falta de sincronització entre mestre i "
"esclau!" "esclau!"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Salta l'error actual" msgstr "Salta l'error actual"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Salta el següent" msgstr "Salta el següent"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "errors." msgstr "errors."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgid "Rename view to"
msgstr "Reanomena les taules a" msgstr "Reanomena les taules a"
#~ msgid "Start"
#~ msgstr "Inicia"
#~ msgid "Stop"
#~ msgstr "Para"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

227
po/cs.po
View File

@@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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 17:30+0100\n" "PO-Revision-Date: 2010-12-07 15:56+0100\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n" "Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: czech <cs@li.org>\n" "Language-Team: czech <cs@li.org>\n"
"MIME-Version: 1.0\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 #: db_structure.php:372 libraries/display_tbl.lib.php:1940
#, php-format #, php-format
msgid "" msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%" "This view has at least this number of rows. Please refer to %sdocumentation"
"s." "%s."
msgstr "" msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." "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 #: enum_editor.php:21 libraries/tbl_properties.inc.php:794
#, php-format #, php-format
msgid "Values for the column \"%s\"" 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 #: enum_editor.php:22 libraries/tbl_properties.inc.php:795
msgid "Enter each value in a separate field." msgid "Enter each value in a separate field."
@@ -840,20 +840,20 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:58 #: import.php:58
#, php-format #, php-format
msgid "" msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%" "You probably tried to upload too large file. Please refer to %sdocumentation"
"s for ways to workaround this limit." "%s for ways to workaround this limit."
msgstr "" msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "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." "prosím %sdokumentaci%s, jak toto omezení obejít."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Soubor nelze přečíst" msgstr "Soubor nelze přečíst"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1112,7 +1112,7 @@ msgstr "Zvolte která pole zobrazit"
#: js/messages.php:98 #: js/messages.php:98
msgid "Add an option for column " msgid "Add an option for column "
msgstr "Přidat paramer pro sloupec" msgstr "Přidat paramer pro sloupec "
#: js/messages.php:101 #: js/messages.php:101
msgid "Generate password" msgid "Generate password"
@@ -1381,12 +1381,12 @@ msgstr "Sekundy"
msgid "Font size" msgid "Font size"
msgstr "Velikost písma" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini." "Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1394,27 +1394,27 @@ msgstr ""
"Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla " "Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla "
"zadána v HTML formuláři." "zadána v HTML formuláři."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Soubor byl nahrán jen částečně." msgstr "Soubor byl nahrán jen částečně."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Chybějící adresář pro dočasné soubory." 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." msgid "Failed to write file to disk."
msgstr "Chyba při zapisování souboru na 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." msgid "File upload stopped by extension."
msgstr "Nahrávání souboru zastaveno rozšířením." 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." msgid "Unknown error in file upload."
msgstr "Neznámá chyba při nahrávání souboru." msgstr "Neznámá chyba při nahrávání souboru."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1598,8 +1598,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:106 #: libraries/auth/config.auth.lib.php:106
#, php-format #, php-format
msgid "" msgid ""
"You probably did not create a configuration file. You might want to use the %" "You probably did not create a configuration file. You might want to use the "
"1$ssetup script%2$s to create one." "%1$ssetup script%2$s to create one."
msgstr "" msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "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." "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." msgid "JSON encoder is needed for chart tooltips."
msgstr "Enkodér pro JSON je potřeba pro tooltipy grafu." msgstr "Enkodér pro JSON je potřeba pro tooltipy grafu."
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "(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." "stránku, všechno je v pořádku."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Nepodařilo se nahrát výchozí konfiguraci ze souboru: %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 "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1835,26 +1835,26 @@ msgstr ""
"Parametr <tt>$cfg['PmaAbsoluteUri']</tt> MUSÍ být nastaven v konfiguračním " "Parametr <tt>$cfg['PmaAbsoluteUri']</tt> MUSÍ být nastaven v konfiguračním "
"souboru!" "souboru!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Chybný index serveru: „%s“" msgstr "Chybný index serveru: „%s“"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "V konfiguraci máte špatnou přihlašovací metodu:" msgstr "V konfiguraci máte špatnou přihlašovací metodu:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší."
@@ -2087,11 +2087,11 @@ msgstr "data"
msgid "structure and data" msgid "structure and data"
msgstr "struktura a 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" msgid "Quick - display only the minimal options to configure"
msgstr "Rychlý - zobrazí jen minimum možností nastavení" 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" msgid "Custom - display all possible options to configure"
msgstr "Vlastní - zobrazí všechna možná nastavení" msgstr "Vlastní - zobrazí všechna možná nastavení"
@@ -2156,7 +2156,7 @@ msgstr "nedostupné"
#: libraries/config/FormDisplay.class.php:732 #: libraries/config/FormDisplay.class.php:732
#, php-format #, php-format
msgid "\"%s\" requires %s extension" 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 #: libraries/config/FormDisplay.class.php:746
#, php-format #, php-format
@@ -3103,10 +3103,8 @@ msgid "Display servers selection"
msgstr "Zobrazit výběr serverů" msgstr "Zobrazit výběr serverů"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy msgid "Minimum number of tables to display the table filter box"
#| msgid "Maximum number of tables displayed in table list" msgstr "Minimální počet tabulek pro zobrazení filtru tabulek"
msgid "Mimimum number of tables to display table filter"
msgstr "Nejvyšší počet tabulek zobrazených v seznamu tabulek"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
msgid "String that separates databases into different tree levels" 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" msgid "Incorrect IP address: %s"
msgstr "Nesprávná IP adresa: %s" msgstr "Nesprávná IP adresa: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." 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!" "Nepodařilo se nahrát pluginy pro export, zkontrolujte prosím vaší instalaci!"
#: libraries/display_export.lib.php:87 #: 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" msgstr "Exportuji databáze z aktuálního serveru"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, php-format
msgid "Exporting tables in the database \"%s\"" #| msgid "Exporting tables in the database \"%s\""
msgstr "Exportuji tabulky z databáze \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "Exportuji tabulky z databáze „%s“"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, php-format
msgid "Exporting rows in the table \"%s\"" #| msgid "Exporting rows in the table \"%s\""
msgstr "Exportuji řádky z tabulky \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "Exportuji řádky z tabulky „%s“"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "Způsob exportu:" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "Databáze:" msgstr "Databáze:"
@@ -4518,8 +4529,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format #, php-format
msgid "" msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time " "This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %" "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." "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr "" msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "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 " "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 #: libraries/display_export.lib.php:313
msgid "zipped" msgid "zipped"
msgstr "zazipováno" msgstr "zazipováno"
#: libraries/display_export.lib.php:315 #: libraries/display_export.lib.php:315
msgid "gzipped" msgid "gzipped"
msgstr "zagzipováno" msgstr "zagzipováno"
#: libraries/display_export.lib.php:317 #: libraries/display_export.lib.php:317
msgid "bzipped" msgid "bzipped"
msgstr "zabzipováno" msgstr "zabzipováno"
#: libraries/display_export.lib.php:331 libraries/display_import.lib.php:244 #: libraries/display_export.lib.php:331 libraries/display_import.lib.php:244
#: libraries/export/codegen.php:37 #: libraries/export/codegen.php:37
msgid "Format:" msgid "Format:"
msgstr "Formát:" msgstr "Formát:"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #| msgid "Format-Specific Options:"
msgid "Format-specific options:"
msgstr "Parametry pro výstupní formát:" msgstr "Parametry pro výstupní formát:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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 #: libraries/display_import.lib.php:131
#, php-format #, php-format
msgid "Importing into the database \"%s\"" msgid "Importing into the database \"%s\""
msgstr "Importuji do databáze \"%s\"" msgstr "Importuji do databáze „%s“"
#: libraries/display_import.lib.php:133 #: libraries/display_import.lib.php:133
#, php-format #, php-format
msgid "Importing into the table \"%s\"" msgid "Importing into the table \"%s\""
msgstr "Importuji do tabulky \"%s\"" msgstr "Importuji do tabulky „%s“"
#: libraries/display_import.lib.php:139 #: libraries/display_import.lib.php:139
msgid "File to Import:" msgid "File to Import:"
@@ -4653,6 +4665,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Počet dotazů od začátku, které se mají přeskočit:" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5051,7 +5067,7 @@ msgid ""
"A \":\" delimited list of metadata headers to be used to initialize the " "A \":\" delimited list of metadata headers to be used to initialize the "
"pbms_metadata_header table when a database is created." "pbms_metadata_header table when a database is created."
msgstr "" 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." "inicializaci tabulky pbms_metadata_header při vytváření databáze."
#: libraries/engines/pbxt.lib.php:22 #: libraries/engines/pbxt.lib.php:22
@@ -5439,8 +5455,8 @@ msgid ""
"Dump binary columns in hexadecimal notation <i>(for example, \"abc\" becomes " "Dump binary columns in hexadecimal notation <i>(for example, \"abc\" becomes "
"0x616263)</i>" "0x616263)</i>"
msgstr "" msgstr ""
"Vypisovat binární pole šestnáctkově <i>(například, \"abc\" becomes 0x616263)" "Vypisovat binární pole šestnáctkově <i>(například, abc becomes 0x616263)</"
"</i>" "i>"
#: libraries/export/sql.php:171 #: libraries/export/sql.php:171
msgid "" msgid ""
@@ -5533,11 +5549,11 @@ msgstr "Zobrazit obsah tabulky kliknutím na její jméno"
#: libraries/import.lib.php:1143 #: libraries/import.lib.php:1143
msgid "" msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link" "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 #: libraries/import.lib.php:1144
msgid "Edit its structure by following the \"Structure\" link" 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 #: libraries/import.lib.php:1147
msgid "Go to database" msgid "Go to database"
@@ -5576,7 +5592,7 @@ msgstr ""
#: libraries/import/csv.php:41 #: libraries/import/csv.php:41
msgid "Column names: " 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:60 libraries/import/csv.php:72
#: libraries/import/csv.php:76 libraries/import/csv.php:80 #: libraries/import/csv.php:76 libraries/import/csv.php:80
@@ -5967,7 +5983,7 @@ msgstr "žádný popisek"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Nastavení podřízeného" 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" msgid "Change or reconfigure master server"
msgstr "Změnit nebo přenastavit nadřízený 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 #: libraries/schema/Export_Relation_Schema.class.php:207
msgid "SCHEMA ERROR: " 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:891
#: libraries/schema/Pdf_Relation_Schema.class.php:1119 #: libraries/schema/Pdf_Relation_Schema.class.php:1119
@@ -6438,8 +6454,8 @@ msgid ""
"For a list of available transformation options and their MIME type " "For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s" "transformations, click on %stransformation descriptions%s"
msgstr "" msgstr ""
"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" "Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
"spopisy transformací%s" "%spopisy transformací%s"
#: libraries/tbl_properties.inc.php:143 #: libraries/tbl_properties.inc.php:143
msgid "Transformation options" msgid "Transformation options"
@@ -6480,8 +6496,8 @@ msgid ""
"No description is available for this transformation.<br />Please ask the " "No description is available for this transformation.<br />Please ask the "
"author what %s does." "author what %s does."
msgstr "" msgstr ""
"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co %" "Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co "
"s dělá." "%s dělá."
#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: libraries/tbl_properties.inc.php:725 server_engines.php:56
#: tbl_operations.php:352 #: 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 " "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 " "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 " "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 #: libraries/user_preferences.inc.php:32
msgid "Manage your settings" msgid "Manage your settings"
@@ -6743,8 +6759,9 @@ msgid ""
"running with this default, is open to intrusion, and you really should fix " "running with this default, is open to intrusion, and you really should fix "
"this security hole by setting a password for user 'root'." "this security hole by setting a password for user 'root'."
msgstr "" msgstr ""
"Máte standardní nastavení hesla uživatele root v MySQL. Doporučujeme změnit " "Máte standardní nastavení hesla uživatele root v MySQL. Doporučujeme "
"toto nastavení a tím podstatně zvýšit zabezpečení vašeho serveru." "nastavit heslo pro uživatele 'root' a tím podstatně zvýšit zabezpečení "
"vašeho serveru."
#: main.php:256 #: main.php:256
msgid "" msgid ""
@@ -7087,8 +7104,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup " "You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s." "script%s."
msgstr "" msgstr ""
"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" "Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
"sNastavovacího skriptu%s." "%sNastavovacího skriptu%s."
#: prefs_manage.php:302 #: prefs_manage.php:302
msgid "Save to browser's storage" msgid "Save to browser's storage"
@@ -7540,8 +7557,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid "" msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the " "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 %" "server uses, if they have been changed manually. In this case, you should "
"sreload the privileges%s before you continue." "%sreload the privileges%s before you continue."
msgstr "" msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "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 " "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" msgid "Reset slave"
msgstr "Resetovat podřízený server" 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 #: server_replication.php:326
#, php-format msgid "Start SQL Thread only"
msgid "IO Thread %s only" msgstr "Spustit jen SQL vlákno"
msgstr "%s jen IO 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:" msgid "Error management:"
msgstr "Práce s chybami:" msgstr "Práce s chybami:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "" msgstr ""
"Přeskakování chyb může vést k rozdílným datům na nadřízeném a podřízeném " "Přeskakování chyb může vést k rozdílným datům na nadřízeném a podřízeném "
"serveru." "serveru."
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Přeskočit současnou chybu" msgstr "Přeskočit současnou chybu"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Přeskočit dalších" msgstr "Přeskočit dalších"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "chyb." msgstr "chyb."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -8625,20 +8640,16 @@ msgid "Query type"
msgstr "Typ dotazu" msgstr "Typ dotazu"
#: server_status.php:709 server_status.php:710 #: server_status.php:709 server_status.php:710
#, fuzzy
#| msgid "Show query box"
msgid "Show query chart" msgid "Show query chart"
msgstr "Zobrazit pole pro dotaz" msgstr "Zobrazit graf dotazu"
#: server_status.php:714 server_status.php:715 #: server_status.php:714 server_status.php:715
#, fuzzy
#| msgid "Hide query box"
msgid "Hide query chart" msgid "Hide query chart"
msgstr "Schovat pole pro dotaz" msgstr "Skrýt graf dotazu"
#: server_status.php:717 #: server_status.php:717
msgid "Note: Generating the query chart can take a long time." 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 #: server_status.php:855
msgid "Replication status" msgid "Replication status"
@@ -9022,7 +9033,7 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "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." "cookie validity%s must be set to a value less or equal to it."
msgstr "" 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šší " "%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato." "hodnotu než je tato."
@@ -9034,8 +9045,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands " "protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to." "of users, including you, are connected to."
msgstr "" msgstr ""
"Pokud to považujete za nutné, použijte další možnosti 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í " "%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 " "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." "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" msgid "Rename view to"
msgstr "Přejmenovat pohled na" msgstr "Přejmenovat pohled na"
#~ msgid "Start"
#~ msgstr "Spustit"
#~ msgid "Stop"
#~ msgstr "Zastavit"
#~ msgid "Display table filter" #~ msgid "Display table filter"
#~ msgstr "Zobrazit rychlé vyhledávání tabulek" #~ msgstr "Zobrazit rychlé vyhledávání tabulek"

142
po/cy.po
View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-06-07 20:23+0200\n"
"Last-Translator: <ardavies@tiscali.co.uk>\n" "Last-Translator: <ardavies@tiscali.co.uk>\n"
"Language-Team: Welsh <cy@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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" "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." "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Nid oedd modd darllen y ffeil hon." msgstr "Nid oedd modd darllen y ffeil hon."
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1431,37 +1431,37 @@ msgstr "Eiliad"
msgid "Font size" msgid "Font size"
msgstr "Maint ffont" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Ffolder dros dro ar goll." msgstr "Ffolder dros dro ar goll."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Methu ag ysgrifennu i'r ddisg." msgstr "Methu ag ysgrifennu i'r ddisg."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Cafodd y lanlwythiad ei atal gan estyniad." msgstr "Cafodd y lanlwythiad ei atal gan estyniad."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Gwall anhysbys wrth lanlwytho ffeil." msgstr "Gwall anhysbys wrth lanlwytho ffeil."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1859,7 +1859,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1869,38 +1869,38 @@ msgid ""
"is fine." "is fine."
msgstr "" msgstr ""
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Indecs gweinydd annilys: %s" msgstr "Indecs gweinydd annilys: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Gweinydd" msgstr "Gweinydd"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Dylech uwchraddio i %s %s neu'n well." msgstr "Dylech uwchraddio i %s %s neu'n well."
@@ -2140,11 +2140,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Strwythur a 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3162,7 +3162,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4286,7 +4286,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4409,19 +4409,21 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #, fuzzy
msgstr "" #| 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 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Creu tabl mewn cronfa ddata %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Creu tabl mewn cronfa ddata %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4430,6 +4432,14 @@ msgstr "Creu tabl mewn cronfa ddata %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Math allbwn" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4556,8 +4566,8 @@ msgstr "\"bzip-iwyd\""
msgid "Format:" msgid "Format:"
msgstr "Fformat" msgstr "Fformat"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" msgid "Format-specific options:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Nifer yr ymholiadau i'w neidio o'r dechrau" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5910,7 +5924,7 @@ msgstr ""
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7630,45 +7644,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Strwythur yn unig"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Strwythur yn unig"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

142
po/da.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-21 14:55+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: danish <da@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"begrænsning." "begrænsning."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Filen kunne ikke læses" msgstr "Filen kunne ikke læses"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1491,11 +1491,11 @@ msgstr "pr. sekund"
msgid "Font size" msgid "Font size"
msgstr "Skriftstørrelse" 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." 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." msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1503,27 +1503,27 @@ msgstr ""
"Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-" "Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-"
"formularen." "formularen."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Den uploadede fil blev kun delvist uploaded." msgstr "Den uploadede fil blev kun delvist uploaded."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Mangler en midlertidig mappe." msgstr "Mangler en midlertidig mappe."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Kunne ikke skrive fil til disk." msgstr "Kunne ikke skrive fil til disk."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Filupload stoppet af udvidelse." msgstr "Filupload stoppet af udvidelse."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Ukendt fejl i filupload." msgstr "Ukendt fejl i filupload."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1921,7 +1921,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "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." "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 #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1950,28 +1950,28 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> direktivet SKAL være sat i din " "<tt>$cfg['PmaAbsoluteUri']</tt> direktivet SKAL være sat i din "
"konfigurationsfil!" "konfigurationsfil!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Ugyldigt server indeks: \"%s\"" msgstr "Ugyldigt server indeks: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Ugyldigt hostnavn for server %1$s. Gennemgå venligst din konfiguration." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Ugyldig autorisationsmetode sat i konfiguration:" msgstr "Ugyldig autorisationsmetode sat i konfiguration:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Du burde opdatere til %s %s eller senere." msgstr "Du burde opdatere til %s %s eller senere."
@@ -2209,11 +2209,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktur og 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3236,7 +3236,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "Antallet af tabeller der er åbne."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4357,7 +4357,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4487,19 +4487,19 @@ msgstr "Kunne ikke indlæse eksportplugins, check venligst din installation!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Tillader låsning af tabeller for nuværende tråd."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Opret ny tabel i database %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Opret ny tabel i database %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4508,6 +4508,14 @@ msgstr "Opret ny tabel i database %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Eksporttype" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4639,9 +4647,11 @@ msgstr "\"bzipped\""
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformationsindstillinger"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4738,6 +4748,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Antal poster (queries) der skal springes over fra start" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6031,7 +6045,7 @@ msgstr "ingen beskrivelse"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7935,45 +7949,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Kun strukturen"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Kun strukturen"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

134
po/de.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-09-16 12:10+0200\n"
"Last-Translator: <sven-cihar.com@incase.de>\n" "Last-Translator: <sven-cihar.com@incase.de>\n"
"Language-Team: german <de@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 %" "Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
"sDokumentation%s zur Lösung diese Problems." "sDokumentation%s zur Lösung diese Problems."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Die Datei konnte nicht gelesen werden" msgstr "Die Datei konnte nicht gelesen werden"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1423,13 +1423,13 @@ msgstr "Sekunde"
msgid "Font size" msgid "Font size"
msgstr "Schriftgröße" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Die hochgeladene Datei ist größer als der in der php.ini in " "Die hochgeladene Datei ist größer als der in der php.ini in "
"upload_max_filesize angegebene Wert." "upload_max_filesize angegebene Wert."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1437,27 +1437,27 @@ msgstr ""
"Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML " "Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML "
"Formulars angegebene Wert." "Formulars angegebene Wert."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Die Datei wurde teilweise übertragen." msgstr "Die Datei wurde teilweise übertragen."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien." 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." msgid "Failed to write file to disk."
msgstr "Datei konnte gespeichert werden." msgstr "Datei konnte gespeichert werden."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Dateihochladen durch eine Erweiterung gestoppt." msgstr "Dateihochladen durch eine Erweiterung gestoppt."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Unbekannter Fehler beim Dateihochladen." msgstr "Unbekannter Fehler beim Dateihochladen."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1862,7 +1862,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "Meistens fehlt bloß irgendwo ein Anführungszeichen oder Semikolon.<br />Wenn "
"Sie eine leere Seite erhalten, ist Ihre Konfigurationsdatei in Ordnung." "Sie eine leere Seite erhalten, ist Ihre Konfigurationsdatei in Ordnung."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Fehler beim Laden der Standard-Konfiguration von: %1$s" msgstr "Fehler beim Laden der Standard-Konfiguration von: %1$s"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1891,28 +1891,28 @@ msgstr ""
"Das <tt>$cfg['PmaAbsoluteUri']</tt>-Verzeichnis MUSS in Ihrer " "Das <tt>$cfg['PmaAbsoluteUri']</tt>-Verzeichnis MUSS in Ihrer "
"Konfigurationsdatei angegeben werden!" "Konfigurationsdatei angegeben werden!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Ungültige Server-Nummer: %s" msgstr "Ungültige Server-Nummer: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre "
"Konfiguration." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Ungültige Authentifikationsmethode:" msgstr "Ungültige Authentifikationsmethode:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Sie sollten auf %s %s oder neuer umsteigen." msgstr "Sie sollten auf %s %s oder neuer umsteigen."
@@ -2152,11 +2152,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktur und Daten" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3249,7 +3249,7 @@ msgstr "Server-Auswahl anzeigen"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Maximale Anzahl der in einer Tabellenliste angezeigten Tabellen"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4520,7 +4520,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Ungültige IP-Adresse: %s" msgstr "Ungültige IP-Adresse: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4653,19 +4653,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Erlaubt die Sperrung bestimmter Tabellen."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Neue Tabelle in Datenbank %s erstellen"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Neue Tabelle in Datenbank %s erstellen"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4674,6 +4674,16 @@ msgstr "Neue Tabelle in Datenbank %s erstellen"
msgid "Export Method:" msgid "Export Method:"
msgstr "Exporttyp" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4807,9 +4817,11 @@ msgstr "BZip-komprimiert"
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Umwandlungsoptionen"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4913,6 +4925,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Anzahl der am Anfang zu überspringenden Einträge (Abfragen)" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6260,7 +6276,7 @@ msgstr "keine Beschreibung"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Slave-Konfiguration" 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" msgid "Change or reconfigure master server"
msgstr "Master-Server wechseln oder neu konfigurieren" msgstr "Master-Server wechseln oder neu konfigurieren"
@@ -8234,47 +8250,53 @@ msgstr "Alles stoppen"
msgid "Reset slave" msgid "Reset slave"
msgstr "Slave zurücksetzen" msgstr "Slave zurücksetzen"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Nur SQL Thread %s" msgstr "Nur SQL Thread %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Start" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Nur SQL Thread %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Stop" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Nur IO Thread %s" 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:" msgid "Error management:"
msgstr "Fehlerbehandlung:" msgstr "Fehlerbehandlung:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "" msgstr ""
"Überspringen von Fehlern kann zu Synchronisationsverlust zwischen Master und " "Überspringen von Fehlern kann zu Synchronisationsverlust zwischen Master und "
"Slave führen!" "Slave führen!"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Überspringe aktuellen Fehler" msgstr "Überspringe aktuellen Fehler"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Überspringe nächsten" msgstr "Überspringe nächsten"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "Fehler." msgstr "Fehler."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10363,6 +10385,12 @@ msgstr "VIEW Name"
msgid "Rename view to" msgid "Rename view to"
msgstr "View umbenennen in" msgstr "View umbenennen in"
#~ msgid "Start"
#~ msgstr "Start"
#~ msgid "Stop"
#~ msgstr "Stop"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

146
po/el.po
View File

@@ -3,14 +3,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-12-04 17:14+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n" "Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
"Language-Team: greek <el@li.org>\n" "Language-Team: greek <el@li.org>\n"
"Language: el\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -547,7 +547,6 @@ msgstr "Διαγραφή"
#: db_search.php:260 #: db_search.php:260
#, php-format #, php-format
#| msgid "Delete tracking data for this table"
msgid "Delete the matches for the %s table?" msgid "Delete the matches for the %s table?"
msgstr "Διαγραφή ταιριασμάτων για τον πίνακα %s;" msgstr "Διαγραφή ταιριασμάτων για τον πίνακα %s;"
@@ -843,14 +842,14 @@ msgstr ""
"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" "Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." "sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1382,13 +1381,13 @@ msgstr "Δευτερόλεπτο"
msgid "Font size" msgid "Font size"
msgstr "Μέγεθος γραμματοσειράς" msgstr "Μέγεθος γραμματοσειράς"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php." "Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php."
"ini." "ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1396,27 +1395,27 @@ msgstr ""
"Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε " "Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε "
"στη φόρμα HTML." "στη φόρμα HTML."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς." msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Χάθηκε ένας προσωρινός φάκελος." msgstr "Χάθηκε ένας προσωρινός φάκελος."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο." msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης." msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1811,7 +1810,7 @@ msgstr "Απαιτείται η επέκταση GD για τα διαγράμμ
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "Ο κωδικοποιητής JSON απαιτείται για τις επεξηγήσεις των διαγραμμάτων." msgstr "Ο κωδικοποιητής JSON απαιτείται για τις επεξηγήσεις των διαγραμμάτων."
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1827,12 +1826,12 @@ msgstr ""
"php. Στις περισσότερες περιπτώσεις κάπου λείπουν εισαγωγικά (\") ή " "php. Στις περισσότερες περιπτώσεις κάπου λείπουν εισαγωγικά (\") ή "
"ερωτηματικά (;).<br />Εάν η php επιστρέψει μια λευκή σελίδα, όλα είναι σωστά." "ερωτηματικά (;).<br />Εάν η php επιστρέψει μια λευκή σελίδα, όλα είναι σωστά."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»" msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1840,28 +1839,28 @@ msgstr ""
"Η εντολή <tt>$cfg['PmaAbsoluteUri']</tt> ΠΡΕΠΕΙ να οριστεί στο αρχείο " "Η εντολή <tt>$cfg['PmaAbsoluteUri']</tt> ΠΡΕΠΕΙ να οριστεί στο αρχείο "
"ρυθμίσεων!" "ρυθμίσεων!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s" msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Διακομιστής" msgstr "Διακομιστής"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη."
@@ -2095,11 +2094,11 @@ msgstr "δεδομένα"
msgid "structure and data" msgid "structure and data"
msgstr "δομή και δεδομένα" 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" msgid "Quick - display only the minimal options to configure"
msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών για ρύθμιση" 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" msgid "Custom - display all possible options to configure"
msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση" msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση"
@@ -3123,7 +3122,7 @@ msgstr "Προβολή επιλογής διακομιστών"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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 "Μέγιστος αριθμός πινάκες που θα προβάλονται σε λίστα πινάκων" msgstr "Μέγιστος αριθμός πινάκες που θα προβάλονται σε λίστα πινάκων"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4370,7 +4369,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Εσφαλμένη διεύθυνση IP: %s" msgstr "Εσφαλμένη διεύθυνση IP: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσεις της PHP." msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσεις της PHP."
@@ -4495,23 +4494,39 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "Αδύνατη η φόρτωση προσθέτων εξαγωγής. Ελέξτε την εγκατάστασή σας!" msgstr "Αδύνατη η φόρτωση προσθέτων εξαγωγής. Ελέξτε την εγκατάστασή σας!"
#: libraries/display_export.lib.php:87 #: 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 "Εξαγωγή βάσεων δεδομένων στον τρέχοντα διακομιστή" msgstr "Εξαγωγή βάσεων δεδομένων στον τρέχοντα διακομιστή"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, fuzzy, php-format
msgid "Exporting tables in the database \"%s\"" #| msgid "Exporting tables in the database \"%s\""
msgid "Exporting tables from \"%s\" database"
msgstr "Εξαγωγή πινάκων στη βάση δεδομένων «%s»" msgstr "Εξαγωγή πινάκων στη βάση δεδομένων «%s»"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, fuzzy, php-format
msgid "Exporting rows in the table \"%s\"" #| msgid "Exporting rows in the table \"%s\""
msgid "Exporting rows from \"%s\" table"
msgstr "Εξαγωγή εγγραφών στον πίνακα «%s»" msgstr "Εξαγωγή εγγραφών στον πίνακα «%s»"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "Μέθοδος εξαγωγής" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "Βάση(εις) Δεδομένων" msgstr "Βάση(εις) Δεδομένων"
@@ -4617,8 +4632,10 @@ msgstr "συμπίεση «bzip»"
msgid "Format:" msgid "Format:"
msgstr "Μορφοποίηση" msgstr "Μορφοποίηση"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
#| msgid "Format-Specific Options:"
msgid "Format-specific options:"
msgstr "Επιλογές Ορισμένης Μορφής:" msgstr "Επιλογές Ορισμένης Μορφής:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Αριθμός εγγραφών που θα παραβλεφθούν από την αρχή" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6047,7 +6068,7 @@ msgstr "χωρίς περιγραφή"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Ρύθμιση δευτερεύοντος" 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" msgid "Change or reconfigure master server"
msgstr "Αλλαγή ή επαναρύθμιση του πρωτεύοντος διακομιστή" msgstr "Αλλαγή ή επαναρύθμιση του πρωτεύοντος διακομιστή"
@@ -6949,7 +6970,6 @@ msgid "Filter"
msgstr "Φίλτρο" msgstr "Φίλτρο"
#: navigation.php:292 #: navigation.php:292
#| msgid "Alter table order by"
msgid "filter tables by name" msgid "filter tables by name"
msgstr "φιλτράρισμα πινάκων κατά όνομα" msgstr "φιλτράρισμα πινάκων κατά όνομα"
@@ -7904,47 +7924,53 @@ msgstr "Πλήρες σταμάτημα"
msgid "Reset slave" msgid "Reset slave"
msgstr "Επαναφορά δευτερεύοντος" msgstr "Επαναφορά δευτερεύοντος"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Διεργασία SQL %s μόνο" msgstr "Διεργασία SQL %s μόνο"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Εκκίνηση" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Διεργασία SQL %s μόνο"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Σταμάτημα" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Διεργασία IO %s μόνο" 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:" msgid "Error management:"
msgstr "Διαχείριση σφάλματος:" msgstr "Διαχείριση σφάλματος:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "" msgstr ""
"Η παράβλεψη σφαλμάτων μπορεί να οδηγήσει στο μη συγχρονισμό πρωτεύοντος και " "Η παράβλεψη σφαλμάτων μπορεί να οδηγήσει στο μη συγχρονισμό πρωτεύοντος και "
"δευτερεύοντος!" "δευτερεύοντος!"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Παράβλεψη τρέχοντος σφάλματος" msgstr "Παράβλεψη τρέχοντος σφάλματος"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Παράβλεψη επόμενου" msgstr "Παράβλεψη επόμενου"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "σφάλματα." msgstr "σφάλματα."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9986,6 +10012,12 @@ msgstr "ΠΡΟΒΟΛΗ ονόματος"
msgid "Rename view to" msgid "Rename view to"
msgstr "Μετονομασία πίνακα σε" msgstr "Μετονομασία πίνακα σε"
#~ msgid "Start"
#~ msgstr "Εκκίνηση"
#~ msgid "Stop"
#~ msgstr "Σταμάτημα"
#~ msgid "Display table filter" #~ msgid "Display table filter"
#~ msgstr "Προβολή φίλτρου πίνακα" #~ msgstr "Προβολή φίλτρου πίνακα"

View File

@@ -3,8 +3,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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-03 19:38+0200\n" "PO-Revision-Date: 2010-12-08 12:48+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: english-gb <en_GB@li.org>\n" "Language-Team: english-gb <en_GB@li.org>\n"
"Language: en_GB\n" "Language: en_GB\n"
@@ -50,7 +50,7 @@ msgstr "Search"
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -547,7 +547,6 @@ msgstr "Delete"
#: db_search.php:260 #: db_search.php:260
#, php-format #, php-format
#| msgid "Delete tracking data for this table"
msgid "Delete the matches for the %s table?" msgid "Delete the matches for the %s table?"
msgstr "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%" "You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit." "s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "File could not be read" msgstr "File could not be read"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1374,12 +1373,12 @@ msgstr "Second"
msgid "Font size" msgid "Font size"
msgstr "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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini." "The uploaded file exceeds the upload_max_filesize directive in php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1387,27 +1386,27 @@ msgstr ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "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." msgid "Missing a temporary folder."
msgstr "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." msgid "Failed to write file to disk."
msgstr "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." msgid "File upload stopped by extension."
msgstr "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." msgid "Unknown error in file upload."
msgstr "Unknown error in file upload." msgstr "Unknown error in file upload."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "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." msgid "JSON encoder is needed for chart tooltips."
msgstr "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 "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "semicolon is missing somewhere.<br />If you receive a blank page, everything "
"is fine." "is fine."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, 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" msgstr "Could not load default configuration from: %1$s"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1825,26 +1824,26 @@ msgstr ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Invalid server index: %s" msgstr "Invalid server index: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "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 #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "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" msgid "structure and data"
msgstr "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" msgid "Quick - display only the minimal options to configure"
msgstr "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" msgid "Custom - display all possible options to configure"
msgstr "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" msgstr "Display servers selection"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Minimum number of tables to display the table filter box"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
msgid "String that separates databases into different tree levels" 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" msgid "Incorrect IP address: %s"
msgstr "Incorrect IP address: %s" msgstr "Incorrect IP address: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "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!" msgstr "Could not load export plug-ins, please check your installation!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #| msgid "Exporting databases in the current server"
msgstr "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 #: libraries/display_export.lib.php:89
#, php-format #, php-format
msgid "Exporting tables in the database \"%s\"" #| msgid "Exporting tables in the database \"%s\""
msgstr "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "Exporting tables from \"%s\" database"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, php-format
msgid "Exporting rows in the table \"%s\"" #| msgid "Exporting rows in the table \"%s\""
msgstr "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "Exporting rows from \"%s\" table"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "Database(s):" msgstr "Database(s):"
@@ -4548,9 +4559,10 @@ msgstr "bzipped"
msgid "Format:" msgid "Format:"
msgstr "Format:" msgstr "Format:"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #| msgid "Format-Specific Options:"
msgstr "Format-Specific Options:" msgid "Format-specific options:"
msgstr "Format-specific options:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4638,6 +4650,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5955,7 +5971,7 @@ msgstr "no description"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "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" msgid "Change or reconfigure master server"
msgstr "Change or reconfigure master server" msgstr "Change or reconfigure master server"
@@ -6845,7 +6861,6 @@ msgid "Filter"
msgstr "Filter" msgstr "Filter"
#: navigation.php:292 #: navigation.php:292
#| msgid "table name"
msgid "filter tables by name" msgid "filter tables by name"
msgstr "filter tables by name" msgstr "filter tables by name"
@@ -7776,45 +7791,47 @@ msgstr "Full stop"
msgid "Reset slave" msgid "Reset slave"
msgstr "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 #: server_replication.php:326
#, php-format #| msgid "SQL Thread %s only"
msgid "IO Thread %s only" msgid "Start SQL Thread only"
msgstr "IO Thread %s 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:" msgid "Error management:"
msgstr "Error management:" msgstr "Error management:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "Skipping errors might lead into unsynchronised 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" msgid "Skip current error"
msgstr "Skip current error" msgstr "Skip current error"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Skip next" msgstr "Skip next"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "errors." msgstr "errors."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -8627,20 +8644,18 @@ msgid "Query type"
msgstr "Query type" msgstr "Query type"
#: server_status.php:709 server_status.php:710 #: server_status.php:709 server_status.php:710
#, fuzzy
#| msgid "Show query box" #| msgid "Show query box"
msgid "Show query chart" msgid "Show query chart"
msgstr "Show query box" msgstr "Show query chart"
#: server_status.php:714 server_status.php:715 #: server_status.php:714 server_status.php:715
#, fuzzy
#| msgid "Hide query box" #| msgid "Hide query box"
msgid "Hide query chart" msgid "Hide query chart"
msgstr "Hide query box" msgstr "Hide query chart"
#: server_status.php:717 #: server_status.php:717
msgid "Note: Generating the query chart can take a long time." 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 #: server_status.php:855
msgid "Replication status" msgid "Replication status"
@@ -9780,6 +9795,12 @@ msgstr "VIEW name"
msgid "Rename view to" msgid "Rename view to"
msgstr "Rename view to" msgstr "Rename view to"
#~ msgid "Start"
#~ msgstr "Start"
#~ msgid "Stop"
#~ msgstr "Stop"
#~ msgid "Display table filter" #~ msgid "Display table filter"
#~ msgstr "Display table filter" #~ msgstr "Display table filter"

151
po/es.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-11-29 02:31+0200\n"
"Last-Translator: <javipas@gmail.com>\n" "Last-Translator: <javipas@gmail.com>\n"
"Language-Team: spanish <es@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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, " "Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
"refiérase a %sdocumentation%s para hallar modos de superar esta limitante." "refiérase a %sdocumentation%s para hallar modos de superar esta limitante."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "No fue posible leer el archivo" msgstr "No fue posible leer el archivo"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1393,13 +1393,13 @@ msgstr "Segundo"
msgid "Font size" msgid "Font size"
msgstr "Tamaño de fuente" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"El archivo que intentó subir excede la directiva upload_max_filesize en php." "El archivo que intentó subir excede la directiva upload_max_filesize en php."
"ini." "ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1407,27 +1407,27 @@ msgstr ""
"El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada " "El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada "
"en el formulario HTML." "en el formulario HTML."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "El archivo que intentó subir no alcanzó el 100%." 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." msgid "Missing a temporary folder."
msgstr "Falta una carpeta temporal." msgstr "Falta una carpeta temporal."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "No fue posible grabar el archivo a disco." 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." msgid "File upload stopped by extension."
msgstr "La subida del archivo fue detenida por su extensión." 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." msgid "Unknown error in file upload."
msgstr "Error desconocido al subir el archivo." msgstr "Error desconocido al subir el archivo."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "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." msgid "JSON encoder is needed for chart tooltips."
msgstr "Se necesita el encoder JSON para los globos de ayuda en las gráficas." 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 "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "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." "sitio.<br />Si recibe una página en blanco, todo está correcto."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "No se pudo cargar la configuración predeterminada desde: \"%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 "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1857,28 +1857,28 @@ msgstr ""
"El contenido de <tt>$cfg['PmaAbsoluteUri']</tt> ¡DEBE constar en config.inc." "El contenido de <tt>$cfg['PmaAbsoluteUri']</tt> ¡DEBE constar en config.inc."
"php!" "php!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "No es válido el índice del servidor: \"%s\"" msgstr "No es válido el índice del servidor: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"El nombre del host no es válido para el servidor %1$s. Por favor, revise su " "El nombre del host no es válido para el servidor %1$s. Por favor, revise su "
"configuración." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Servidor" msgstr "Servidor"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Método de autenticación no válido diefinido en la configuración:" 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 #, php-format
msgid "You should upgrade to %s %s or later." 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." 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" msgid "structure and data"
msgstr "estructura y datos" 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" msgid "Quick - display only the minimal options to configure"
msgstr "Rápido - mostrar solo el mínimo de opciones de configuración" 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" msgid "Custom - display all possible options to configure"
msgstr "Personalizado - mostrar todas las opciones de configuración posibles" 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 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Número máximo de tablas mostradas en una lista de tablas"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4419,7 +4419,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "La dirección IP es incorrecta: %s" msgstr "La dirección IP es incorrecta: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4553,19 +4553,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Permite poner candados a las tablas para el proceso actual."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Crear nueva tabla en la base de datos %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Crear nueva tabla en la base de datos %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4574,6 +4574,18 @@ msgstr "Crear nueva tabla en la base de datos %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Tipo de exportación" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4706,9 +4718,11 @@ msgstr "\"Comprimido con bzip\""
msgid "Format:" msgid "Format:"
msgstr "Formato" msgstr "Formato"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opciones de transformación"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4806,6 +4820,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Número de registros (consultas) a saltarse desde el inicio" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6158,7 +6176,7 @@ msgstr "Sin descripción"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Configuración del servidor" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -8113,46 +8131,47 @@ msgstr "Texto completo"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Únicamente la estructura "
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Únicamente la estructura "
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgid "Rename view to"
msgstr "Cambiar el nombre de la vista a " msgstr "Cambiar el nombre de la vista a "
#, fuzzy
#~ msgid "Start"
#~ msgstr "Inicio"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

148
po/et.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: estonian <et@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "Te kindlasti proovisite laadida liiga suurt faili. Palun uuri "
"dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Faili ei suudetud lugeda" msgstr "Faili ei suudetud lugeda"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1489,37 +1489,37 @@ msgstr "sekundis"
msgid "Font size" msgid "Font size"
msgstr "Fondi suurus" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1914,7 +1914,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "kuskilt puudu ülakoma või semikoolon.<br />Kui Teile kuvatakse tühi leht on "
"kõik korras." "kõik korras."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1944,27 +1944,27 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> konstant peab teie konfiguratsioonifailis " "<tt>$cfg['PmaAbsoluteUri']</tt> konstant peab teie konfiguratsioonifailis "
"määratud olema!" "määratud olema!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Vigane serveri indeks: \"%s\"" msgstr "Vigane serveri indeks: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Vigane autoriseerimise meetod konfiguratsioonifailis:" msgstr "Vigane autoriseerimise meetod konfiguratsioonifailis:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Te peaksite uuendama %s -i versioonini %s või uuemaks." msgstr "Te peaksite uuendama %s -i versioonini %s või uuemaks."
@@ -2205,11 +2205,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktuur ja andmed" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3257,7 +3257,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "Mitu tabelit on hetkel avatud."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4394,7 +4394,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4524,19 +4524,19 @@ msgstr "Viga eksportimis moodulite laadimisel, palun kontrolli seadeid!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Loo uus tabel andmebaasi %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Loo uus tabel andmebaasi %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4545,6 +4545,15 @@ msgstr "Loo uus tabel andmebaasi %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Ekspordi tüüp" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4676,9 +4685,11 @@ msgstr "\"bzipitud\""
msgid "Format:" msgid "Format:"
msgstr "Formaat" msgstr "Formaat"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformeerimise seaded"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4772,6 +4783,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Käske (päringuid) mida algusest vahele jätta" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6074,7 +6089,7 @@ msgstr "pole kirjeldust"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7977,46 +7992,47 @@ msgstr "Täistekst"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Ainult struktuur"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Ainult struktuur"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9964,6 +9980,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Nimeta tabel ümber" msgstr "Nimeta tabel ümber"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Lau"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

147
po/eu.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: basque <eu@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -868,14 +868,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Ezinezkoa fitxategia irakurtzea" msgstr "Ezinezkoa fitxategia irakurtzea"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1476,37 +1476,37 @@ msgstr "segunduko"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1893,7 +1893,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "nonbait ez egoteak sortzen du arazoa.<br />Orria txuriz jasoz gero, dena "
"ondo legoke." "ondo legoke."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1923,26 +1923,26 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> direktibak zure konfigurazio fitxategian " "<tt>$cfg['PmaAbsoluteUri']</tt> direktibak zure konfigurazio fitxategian "
"zehaztuta behar du egon!" "zehaztuta behar du egon!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Zerbitzaria" msgstr "Zerbitzaria"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke."
@@ -2179,11 +2179,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Egitura eta datuak" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3214,7 +3214,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4338,7 +4338,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4465,19 +4465,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Momentuko harian taulak blokeatzea baimentzen du."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Taula berri bat sortu %s datu-basean"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Taula berri bat sortu %s datu-basean"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4486,6 +4486,14 @@ msgstr "Taula berri bat sortu %s datu-basean"
msgid "Export Method:" msgid "Export Method:"
msgstr "Esportazio mota" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4610,9 +4618,11 @@ msgstr "\"Bzip-ez trinkotua\""
msgid "Format:" msgid "Format:"
msgstr "Formatoa" msgstr "Formatoa"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Eraldaketen hobespenak"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4693,6 +4703,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5972,7 +5986,7 @@ msgstr "Deskribapenik ez"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7855,46 +7869,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Egitura soilik"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Egitura soilik"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9732,6 +9747,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Taula berrizendatu izen honetara: " msgstr "Taula berrizendatu izen honetara: "
#, fuzzy
#~ msgid "Start"
#~ msgstr "Lar"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

147
po/fa.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: <ahmad_usa2007@yahoo.com>\n" "Last-Translator: <ahmad_usa2007@yahoo.com>\n"
"Language-Team: persian <fa@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -858,14 +858,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "" msgstr ""
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1454,37 +1454,37 @@ msgstr " ثانیه"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1868,7 +1868,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1884,37 +1884,37 @@ msgstr ""
"(\" ; \") در جايي وجود ندارد.<br />اگر يك صفحه خالي دريافت كرديد ، همه چيز " "(\" ; \") در جايي وجود ندارد.<br />اگر يك صفحه خالي دريافت كرديد ، همه چيز "
"درست است." "درست است."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "سرور" msgstr "سرور"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2154,11 +2154,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "ساختار و داده‌ها" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3176,7 +3176,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4289,7 +4289,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4415,19 +4415,21 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #, fuzzy
msgstr "" #| msgid "Create table on database %s"
msgid "Exporting databases from the current server"
msgstr "ساخت جدول جديد در پايگاه داده %s"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "ساخت جدول جديد در پايگاه داده %s" msgstr "ساخت جدول جديد در پايگاه داده %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "ساخت جدول جديد در پايگاه داده %s" msgstr "ساخت جدول جديد در پايگاه داده %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4436,6 +4438,14 @@ msgstr "ساخت جدول جديد در پايگاه داده %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "صدور" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4557,8 +4567,8 @@ msgstr "\"bzipped\""
msgid "Format:" msgid "Format:"
msgstr "قالب" msgstr "قالب"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" msgid "Format-specific options:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5900,7 +5914,7 @@ msgstr "no Description"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7665,46 +7679,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "فقط ساختار"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "فقط ساختار"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9527,6 +9542,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "بازناميدن جدول به" msgstr "بازناميدن جدول به"
#, fuzzy
#~ msgid "Start"
#~ msgstr "شنبه"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

136
po/fi.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: <asdfsdf@asdfasdfasdf.com>\n" "Last-Translator: <asdfsdf@asdfasdfasdf.com>\n"
"Language-Team: finnish <fi@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Tiedostoa ei voi lukea" msgstr "Tiedostoa ei voi lukea"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1377,13 +1377,13 @@ msgstr "Sekunti"
msgid "Font size" msgid "Font size"
msgstr "Fonttikoko" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-" "Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-"
"asetuksen arvon." "asetuksen arvon."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1391,27 +1391,27 @@ msgstr ""
"Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-" "Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-"
"asetuksen arvon." "asetuksen arvon."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Tiedosto lähetettiin vain osittain." msgstr "Tiedosto lähetettiin vain osittain."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Tilapäiskansio puuttuu." msgstr "Tilapäiskansio puuttuu."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Tiedoston kirjoitus levylle epäonnistui." msgstr "Tiedoston kirjoitus levylle epäonnistui."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Laajennus keskeytti tiedoston lähetyksen." msgstr "Laajennus keskeytti tiedoston lähetyksen."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Tuntematon virhe tiedostoa lähetettäessä." msgstr "Tuntematon virhe tiedostoa lähetettäessä."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "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." msgid "JSON encoder is needed for chart tooltips."
msgstr "Kaavioiden työkaluvihjeitä varten tarvitaan JSON-koodain." msgstr "Kaavioiden työkaluvihjeitä varten tarvitaan JSON-koodain."
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 /" "Todennäköisimmin joltain riviltä puuttuu lainausmerkki tai puolipiste.<br /"
">Jos linkistä avautuva sivu on tyhjä, asetustiedostossa ei ollut virhettä." ">Jos linkistä avautuva sivu on tyhjä, asetustiedostossa ei ollut virhettä."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "<tt>$cfg['PmaAbsoluteUri']</tt> täytyy määritellä asetustiedostossa!" msgstr "<tt>$cfg['PmaAbsoluteUri']</tt> täytyy määritellä asetustiedostossa!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Virheellinen palvelimen indeksi: %s" msgstr "Virheellinen palvelimen indeksi: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Palvelin" msgstr "Palvelin"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Asetuksissa on virheellinen todennustapa:" msgstr "Asetuksissa on virheellinen todennustapa:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan."
@@ -2080,11 +2080,11 @@ msgstr "tiedot"
msgid "structure and data" msgid "structure and data"
msgstr "rakenne ja tiedot" 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" msgid "Quick - display only the minimal options to configure"
msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän" 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" msgid "Custom - display all possible options to configure"
msgstr "Mukautettu - näytä kaikki mahdolliset asetukset" msgstr "Mukautettu - näytä kaikki mahdolliset asetukset"
@@ -3166,7 +3166,7 @@ msgstr "Näytä palvelinten valinta"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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ä" msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4431,7 +4431,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Virheellinen IP-osoite: %s" msgstr "Virheellinen IP-osoite: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4563,19 +4563,19 @@ msgstr "Vientiin tarvittavia lisäosia ei voitu ladata; tarkista asetukset!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Luo uusi taulu tietokantaan %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Luo uusi taulu tietokantaan %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4584,6 +4584,18 @@ msgstr "Luo uusi taulu tietokantaan %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Vientityyppi" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4717,9 +4729,11 @@ msgstr "\"bzip-pakkaus\""
msgid "Format:" msgid "Format:"
msgstr "Muoto" msgstr "Muoto"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Muunnosvaihtoehdot"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4823,6 +4837,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Alusta ohitettavien tietueiden (kyselyjen) määrä" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6164,7 +6182,7 @@ msgstr "ei kuvausta"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Alipalvelimen asetusten määrittely" 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" msgid "Change or reconfigure master server"
msgstr "Vaihda isäntäpalvelin tai muuta sen asetuksia" msgstr "Vaihda isäntäpalvelin tai muuta sen asetuksia"
@@ -8119,29 +8137,35 @@ msgstr "Kokonäkymän loppu"
msgid "Reset slave" msgid "Reset slave"
msgstr "Nollaa alipalvelin" msgstr "Nollaa alipalvelin"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "SQL-säie %s vain" msgstr "SQL-säie %s vain"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Käynnistä" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "SQL-säie %s vain"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Lopeta" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "IO-säie %s vain" 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:" msgid "Error management:"
msgstr "Virheiden hallinta:" msgstr "Virheiden hallinta:"
#: server_replication.php:332 #: server_replication.php:340
#, fuzzy #, fuzzy
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!" #| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors 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 " "Isäntä- ja alipalvelin saattavat jäädä yhtenäistämättömiksi, mikäli virheet "
"ohitetaan!" "ohitetaan!"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Ohita nykyinen virhe" msgstr "Ohita nykyinen virhe"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Ohita seuraava" msgstr "Ohita seuraava"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "virhettä." msgstr "virhettä."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgid "Rename view to"
msgstr "Nimeä taulu uudelleen" msgstr "Nimeä taulu uudelleen"
#~ msgid "Start"
#~ msgstr "Käynnistä"
#~ msgid "Stop"
#~ msgstr "Lopeta"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

153
po/fr.po
View File

@@ -3,8 +3,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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-03 19:36+0200\n" "PO-Revision-Date: 2010-12-08 12:45+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: french <fr@li.org>\n" "Language-Team: french <fr@li.org>\n"
"Language: fr\n" "Language: fr\n"
@@ -51,7 +51,7 @@ msgstr "Rechercher"
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -548,7 +548,6 @@ msgstr "Effacer"
#: db_search.php:260 #: db_search.php:260
#, php-format #, php-format
#| msgid "Delete tracking data for this table"
msgid "Delete the matches for the %s table?" msgid "Delete the matches for the %s table?"
msgstr "Supprimer de la table %s les occurences?" 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 " "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
"cette limite." "cette limite."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Le fichier n'a pu être lu" msgstr "Le fichier n'a pu être lu"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1387,13 +1386,13 @@ msgstr "Seconde"
msgid "Font size" msgid "Font size"
msgstr "Taille du texte" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"La taille du fichier téléchargé dépasse la limite permise par la directive " "La taille du fichier téléchargé dépasse la limite permise par la directive "
"upload_max_filesize de php.ini." "upload_max_filesize de php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1401,27 +1400,27 @@ msgstr ""
"La taille du fichier téléchargé dépasse la limite permise par la directive " "La taille du fichier téléchargé dépasse la limite permise par la directive "
"MAX_FILE_SIZE présente dans le formulaire HTML." "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." msgid "The uploaded file was only partially uploaded."
msgstr "Le fichier n'a été que partiellement téléchargé." 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." msgid "Missing a temporary folder."
msgstr "Répertoire temporaire manquant." msgstr "Répertoire temporaire manquant."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Erreur lors de l'écriture du fichier sur disque." 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." msgid "File upload stopped by extension."
msgstr "Téléchargement arrêté par l'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." msgid "Unknown error in file upload."
msgstr "Erreur inconnue durant le téléchargement." msgstr "Erreur inconnue durant le téléchargement."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "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." msgid "JSON encoder is needed for chart tooltips."
msgstr "L'encodeur JSON est requis pour afficher les conseils de graphique." msgstr "L'encodeur JSON est requis pour afficher les conseils de graphique."
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "virgule sont manquants.<br />Si vous recevez une page blanche, aucune erreur "
"n'a été détectée." "n'a été détectée."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Chargement de la configuration par défaut impossible depuis %1$s" msgstr "Chargement de la configuration par défaut impossible depuis %1$s"
# OK # OK
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1844,29 +1843,29 @@ msgstr ""
"Le paramètre <tt>$cfg['PmaAbsoluteUri']</tt> DOIT être renseigné dans votre " "Le paramètre <tt>$cfg['PmaAbsoluteUri']</tt> DOIT être renseigné dans votre "
"fichier de configuration !" "fichier de configuration !"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Indice de serveur invalide: %s" msgstr "Indice de serveur invalide: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Nom d'hôte (hostname) invalide pour le serveur %1$s. Veuillez vérifier votre " "Nom d'hôte (hostname) invalide pour le serveur %1$s. Veuillez vérifier votre "
"configuration." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Serveur" msgstr "Serveur"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
"Le fichier de configuration contient un type d'authentification invalide :" "Le fichier de configuration contient un type d'authentification invalide :"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Vous devriez utiliser %s en version %s ou plus récente." msgstr "Vous devriez utiliser %s en version %s ou plus récente."
@@ -2100,11 +2099,11 @@ msgstr "données"
msgid "structure and data" msgid "structure and data"
msgstr "structure et données" 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" msgid "Quick - display only the minimal options to configure"
msgstr "Rapide - n'afficher qu'un minimum d'options à configurer" 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" msgid "Custom - display all possible options to configure"
msgstr "Personnalisée - afficher toutes les options possibles" msgstr "Personnalisée - afficher toutes les options possibles"
@@ -3124,10 +3123,9 @@ msgid "Display servers selection"
msgstr "Affiche la liste des serveurs" msgstr "Affiche la liste des serveurs"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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 "Nombre maximum de tables affichées dans la liste des tables" msgstr "Nombre minimum de tables pour afficher la boîte de filtre de table"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels"
@@ -4352,7 +4350,7 @@ msgstr "Le controlpass est vide"
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Adresse IP incorrecte : %s" msgstr "Adresse IP incorrecte : %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." 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 !" msgstr "Erreur lors du chargement des modules d'exportation !"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #| msgid "Exporting databases in the current server"
msgstr "Exportation des bases de données du serveur actuel" msgid "Exporting databases from the current server"
msgstr "Exportation des bases de données depuis le serveur courant"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, php-format
msgid "Exporting tables in the database \"%s\"" #| msgid "Exporting tables in the database \"%s\""
msgstr "Exportation des tables dans la base de données «%s»" msgid "Exporting tables from \"%s\" database"
msgstr "Exportation des tables depuis la base de données «%s»"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, 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»" msgstr "Exportation des lignes de la table «%s»"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "Méthode d'exportation:" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "Base(s) de données" msgstr "Base(s) de données"
@@ -4602,8 +4613,9 @@ msgstr " «bzippé »"
msgid "Format:" msgid "Format:"
msgstr "Format:" msgstr "Format:"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #| msgid "Format-Specific Options:"
msgid "Format-specific options:"
msgstr "Options spécifiques au format:" msgstr "Options spécifiques au format:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Nombre de lignes à ignorer à partir de la première ligne:" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6030,7 +6046,7 @@ msgstr "pas de description"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Configuration de l'esclave" 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" msgid "Change or reconfigure master server"
msgstr "Changer ou reconfigurer le serveur maître" msgstr "Changer ou reconfigurer le serveur maître"
@@ -6929,7 +6945,6 @@ msgid "Filter"
msgstr "Filtre" msgstr "Filtre"
#: navigation.php:292 #: navigation.php:292
#| msgid "Alter table order by"
msgid "filter tables by name" msgid "filter tables by name"
msgstr "filtrer par nom de table" msgstr "filtrer par nom de table"
@@ -7887,47 +7902,45 @@ msgstr "Arrêter complètement"
msgid "Reset slave" msgid "Reset slave"
msgstr "Réinitialiser l'esclave" 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 #: server_replication.php:326
#, php-format msgid "Start SQL Thread only"
msgid "IO Thread %s only" msgstr "Démarrer seulement le fil d'exécution SQL"
msgstr "%s seulement le fil d'exécution des entrées-sorties"
#: 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:" msgid "Error management:"
msgstr "Gestion des erreurs : " msgstr "Gestion des erreurs : "
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "" msgstr ""
"Ignorer les erreurs peut mener à une désynchronisation entre les serveurs " "Ignorer les erreurs peut mener à une désynchronisation entre les serveurs "
"maître et esclave !" "maître et esclave !"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Ignorer l'erreur courante" msgstr "Ignorer l'erreur courante"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Ignorer les prochaines" msgstr "Ignorer les prochaines"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "erreurs." msgstr "erreurs."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgstr "Type de requête"
#: server_status.php:709 server_status.php:710 #: server_status.php:709 server_status.php:710
#, fuzzy
#| msgid "Show query box"
msgid "Show query chart" msgid "Show query chart"
msgstr "Montrer zone SQL" msgstr "Afficher le graphique des requêtes"
#: server_status.php:714 server_status.php:715 #: server_status.php:714 server_status.php:715
#, fuzzy
#| msgid "Hide query box"
msgid "Hide query chart" msgid "Hide query chart"
msgstr "Cacher zone SQL" msgstr "Cacher le graphique des requêtes"
#: server_status.php:717 #: server_status.php:717
msgid "Note: Generating the query chart can take a long time." msgid "Note: Generating the query chart can take a long time."
msgstr "" msgstr ""
"Remarque : la génération du graphique des requêtes peut prendre un certain "
"temps."
#: server_status.php:855 #: server_status.php:855
msgid "Replication status" msgid "Replication status"
@@ -9926,6 +9937,12 @@ msgstr "Nom de la vue"
msgid "Rename view to" msgid "Rename view to"
msgstr "Changer le nom de la vue pour" msgstr "Changer le nom de la vue pour"
#~ msgid "Start"
#~ msgstr "Démarrer"
#~ msgid "Stop"
#~ msgstr "Arrêter"
#~ msgid "Display table filter" #~ msgid "Display table filter"
#~ msgstr "Montrer le filtre de table" #~ msgstr "Montrer le filtre de table"

134
po/gl.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: galician <gl@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 %" "Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
"sdocumentación%s para averiguar como evitar este límite." "sdocumentación%s para averiguar como evitar este límite."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Non se puido ler o ficheiro" msgstr "Non se puido ler o ficheiro"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1497,13 +1497,13 @@ msgstr "por segundo"
msgid "Font size" msgid "Font size"
msgstr "Tamaño da letra" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php." "O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php."
"ini." "ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1511,27 +1511,27 @@ msgstr ""
"O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no " "O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no "
"formulario HTML." "formulario HTML."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "O ficheiro enviado só se recibiu parcialmente." msgstr "O ficheiro enviado só se recibiu parcialmente."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Falta un directorio temporal." msgstr "Falta un directorio temporal."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Non se puido escribir no disco." msgstr "Non se puido escribir no disco."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Detívose o envío do ficheiro por causa do engadido." 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." msgid "Unknown error in file upload."
msgstr "Erro descoñecido ao enviar o ficheiro." msgstr "Erro descoñecido ao enviar o ficheiro."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1938,7 +1938,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "casos simplemente faltan unha aspa ou un ponto e vírcula <br/>Se recibe unha "
"páxina en branco é que todo está ben." "páxina en branco é que todo está ben."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Non se puido cargar a configuración desde: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1968,28 +1968,28 @@ msgstr ""
"A directiva <tt>$cfg['PmaAbsoluteUri']</tt> DEBE estar asignada no seu " "A directiva <tt>$cfg['PmaAbsoluteUri']</tt> DEBE estar asignada no seu "
"ficheiro de configuración." "ficheiro de configuración."
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "O índice do servidor non é válido: \"%s\"" msgstr "O índice do servidor non é válido: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"O nome de servidor non é válido para o servidor %1$s. Revise a configuración." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Servidor" msgstr "Servidor"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Na configuración indicouse un método de autenticación que non válido::" 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 #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Debería actualizar a %s %s ou posterior." msgstr "Debería actualizar a %s %s ou posterior."
@@ -2231,11 +2231,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Estrutura e datos" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3332,7 +3332,7 @@ msgstr "Mostrar a selección de servidores"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Número máximo de táboas que se mostran na listaxe de táboas"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4619,7 +4619,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "O enderezo IP é incorrecto: %s" msgstr "O enderezo IP é incorrecto: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4751,19 +4751,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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" msgstr "Permite bloquear táboas do fío en uso"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Crear unha táboa nova na base de datos %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Crear unha táboa nova na base de datos %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4772,6 +4772,16 @@ msgstr "Crear unha táboa nova na base de datos %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Tipo de exportación" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4905,9 +4915,11 @@ msgstr "comprimido no formato \"bzip\""
msgid "Format:" msgid "Format:"
msgstr "Formato" msgstr "Formato"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| 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 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -5011,6 +5023,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Número de rexistros (procuras) que se ignoran desde o comezo" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6357,7 +6373,7 @@ msgstr "sen descrición"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Configuración do escravo" 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" msgid "Change or reconfigure master server"
msgstr "Mudar ou reconfigurar o servidor principal" msgstr "Mudar ou reconfigurar o servidor principal"
@@ -8314,29 +8330,35 @@ msgstr "Detención completa"
msgid "Reset slave" msgid "Reset slave"
msgstr "Reiniciar o escravo" msgstr "Reiniciar o escravo"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Fío SQL %s só" msgstr "Fío SQL %s só"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Inicio" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Fío SQL %s só"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Detención" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Fío de E/S %s só" 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:" msgid "Error management:"
msgstr "Xestión de erros:" msgstr "Xestión de erros:"
#: server_replication.php:332 #: server_replication.php:340
#, fuzzy #, fuzzy
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!" #| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors 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 " "Omitir o(s) erro(s) podería conducir a que o principal e o escravo non "
"estean sincronizados." "estean sincronizados."
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Omitir este erro" msgstr "Omitir este erro"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Omitir os seguintes" msgstr "Omitir os seguintes"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "erros." msgstr "erros."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgid "Rename view to"
msgstr "Mudar o nome da táboa para" msgstr "Mudar o nome da táboa para"
#~ msgid "Start"
#~ msgstr "Inicio"
#~ msgid "Stop"
#~ msgstr "Detención"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

150
po/he.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: hebrew <he@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -857,14 +857,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "נכשל בקריאת הקובץ" msgstr "נכשל בקריאת הקובץ"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1464,37 +1464,37 @@ msgstr "לשנייה"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1885,7 +1885,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1899,37 +1899,37 @@ msgstr ""
"ישירות בעזרת הקישור מתחת להודעה זו וקרא את הודעת PHP שהינך מקבל. ברוב המילים " "ישירות בעזרת הקישור מתחת להודעה זו וקרא את הודעת PHP שהינך מקבל. ברוב המילים "
"גרש או נקודה-פסיק חסרים במקום כלשהו.<br /> אם הינך מקבל דף ריק, הכל בסדר." "גרש או נקודה-פסיק חסרים במקום כלשהו.<br /> אם הינך מקבל דף ריק, הכל בסדר."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "שרת" msgstr "שרת"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "אתה צריך לשדרג אל %s %s לפחות." msgstr "אתה צריך לשדרג אל %s %s לפחות."
@@ -2170,11 +2170,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "מבנה ומידע" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3205,7 +3205,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4331,7 +4331,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4458,19 +4458,21 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #, fuzzy
msgstr "" #| msgid "Cannot log in to the MySQL server"
msgid "Exporting databases from the current server"
msgstr "נכשל בכניסה לשרת MySQL"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "יצירת טבלה חדשה על מאגר נתונים %s" msgstr "יצירת טבלה חדשה על מאגר נתונים %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "יצירת טבלה חדשה על מאגר נתונים %s" msgstr "יצירת טבלה חדשה על מאגר נתונים %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4479,6 +4481,14 @@ msgstr "יצירת טבלה חדשה על מאגר נתונים %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "סוג ייצוא" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4603,9 +4613,10 @@ msgstr "\"bzipped\""
msgid "Format:" msgid "Format:"
msgstr "תבנית" msgstr "תבנית"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" msgid "Format-specific options:"
msgstr "לתבנית זאת אין אפשרויות"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4686,6 +4697,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5964,7 +5979,7 @@ msgstr "ללא תיאור"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7754,46 +7769,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "מבנה בלבד"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "מבנה בלבד"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9629,6 +9645,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "שינוי שם טבלה אל" msgstr "שינוי שם טבלה אל"
#, fuzzy
#~ msgid "Start"
#~ msgstr "שבת"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

146
po/hi.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-05-21 05:48+0200\n"
"Last-Translator: <u4663530@anu.edu.au>\n" "Last-Translator: <u4663530@anu.edu.au>\n"
"Language-Team: hindi <hi@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -862,14 +862,14 @@ msgstr ""
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
"दोकुमेंताशन%s पढ़ें." "दोकुमेंताशन%s पढ़ें."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "फाइल पढ़ी नहीं जा सकती. " msgstr "फाइल पढ़ी नहीं जा सकती. "
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1424,37 +1424,37 @@ msgstr "सेकंड"
msgid "Font size" msgid "Font size"
msgstr "फ़ॉन्ट का आकार" msgstr "फ़ॉन्ट का आकार"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है." msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है." msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है." msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "एक अस्थायी फ़ोल्डर गुम है." msgstr "एक अस्थायी फ़ोल्डर गुम है."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "डिस्क में फ़ाइल लिखने में असफल" msgstr "डिस्क में फ़ाइल लिखने में असफल"
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है." msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1844,7 +1844,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1854,37 +1854,37 @@ msgid ""
"is fine." "is fine."
msgstr "" msgstr ""
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "" msgstr ""
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2119,11 +2119,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "संरचना और डाटा" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3132,7 +3132,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4249,7 +4249,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4375,17 +4375,19 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #, fuzzy
msgstr "" #| msgid "Cannot log in to the MySQL server"
msgid "Exporting databases from the current server"
msgstr "MySQL सर्वर में प्रवेश नहीं कर सकते"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr " डाटाबेस मे नया टेबल बनाओ" msgstr " डाटाबेस मे नया टेबल बनाओ"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr " डाटाबेस मे नया टेबल बनाओ" msgstr " डाटाबेस मे नया टेबल बनाओ"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4394,6 +4396,14 @@ msgstr " डाटाबेस मे नया टेबल बनाओ"
msgid "Export Method:" msgid "Export Method:"
msgstr "निर्यात" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4503,9 +4513,11 @@ msgstr ""
msgid "Format:" msgid "Format:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Column-specific privileges"
msgid "Format-specific options:"
msgstr " केवल कोलम के प्रिविलेज"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4593,6 +4605,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5844,7 +5860,7 @@ msgstr ""
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7586,45 +7602,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "केवल संरचना"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "केवल संरचना"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

148
po/hr.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: croatian <hr@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 %" "Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." "sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Datoteku nije moguće pročitati" msgstr "Datoteku nije moguće pročitati"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1499,13 +1499,13 @@ msgstr "po sekundi"
msgid "Font size" msgid "Font size"
msgstr "Veličina fonta" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina " "Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina "
"datoteke) u datoteci php.ini." "datoteke) u datoteci php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1513,27 +1513,27 @@ msgstr ""
"Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), " "Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), "
"određenu u HTML obliku." "određenu u HTML obliku."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Učitana datoteka bila je djelomično učitana." 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." msgid "Missing a temporary folder."
msgstr "Nedostaje mapa privremene pohrane." msgstr "Nedostaje mapa privremene pohrane."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Zapisivanje datoteke na disk nije uspjelo." msgstr "Zapisivanje datoteke na disk nije uspjelo."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije." msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Nepoznata pogreška tijekom učitavanja datoteke." msgstr "Nepoznata pogreška tijekom učitavanja datoteke."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1928,7 +1928,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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." "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." "<br />Ako se prikaže prazna stranica, sve je u redu."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1958,29 +1958,29 @@ msgstr ""
"Direktiva <tt>$cfg['PmaAbsoluteUri']</tt> MORA BITI postavljena u vašoj " "Direktiva <tt>$cfg['PmaAbsoluteUri']</tt> MORA BITI postavljena u vašoj "
"konfiguracijskoj datoteci!" "konfiguracijskoj datoteci!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Neispravan indeks poslužitelja: \"%s\"" msgstr "Neispravan indeks poslužitelja: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju "
"konfiguraciju." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Poslužitelj" msgstr "Poslužitelj"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Trebali biste nadograditi na %s %s ili kasniju." msgstr "Trebali biste nadograditi na %s %s ili kasniju."
@@ -2221,11 +2221,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Strukturu i podatke" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3271,7 +3271,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "Broj otvorenih tablica."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4410,7 +4410,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4542,19 +4542,19 @@ msgstr "Nije moguće učitati dodatke za izvoz. Provjerite svoju instalaciju!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Dopušta zaključavanje tablica u trenutnoj grani."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Izradi novu tablicu u bazi podataka %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Izradi novu tablicu u bazi podataka %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4563,6 +4563,15 @@ msgstr "Izradi novu tablicu u bazi podataka %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Vrsta izvoza" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4694,9 +4703,11 @@ msgstr "\"bzipano\""
msgid "Format:" msgid "Format:"
msgstr "Oblikovanje" msgstr "Oblikovanje"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcije preoblikovanja"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4792,6 +4803,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Broj zapisa (upita) koje je potrebno preskočiti od početka" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6127,7 +6142,7 @@ msgstr "bez opisa"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -8044,46 +8059,47 @@ msgstr "Puni tekst"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Samo strukturu"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Samo strukturu"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10055,6 +10071,10 @@ msgstr "Naziv prikaza"
msgid "Rename view to" msgid "Rename view to"
msgstr "Preimenuj tablicu u" msgstr "Preimenuj tablicu u"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sub"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

149
po/hu.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-09-14 20:45+0200\n"
"Last-Translator: KAMI <kami911@gmail.com>\n" "Last-Translator: KAMI <kami911@gmail.com>\n"
"Language-Team: hungarian <hu@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 %" "Ö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." "sdokumentációban%s a korlátozás feloldásának."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Nem lehetett beolvasni a fájlt" msgstr "Nem lehetett beolvasni a fájlt"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1502,13 +1502,13 @@ msgstr "másodpercenként"
msgid "Font size" msgid "Font size"
msgstr "Betűméret" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"A feltöltött fájl mérete túllépi a php.ini fájlban megadott " "A feltöltött fájl mérete túllépi a php.ini fájlban megadott "
"upload_max_filesize utasítást." "upload_max_filesize utasítást."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "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 " "A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE "
"utasítást." "utasítást."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "A feltöltött fájl csak részben került feltöltésre." 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." msgid "Missing a temporary folder."
msgstr "Hiányzik egy ideiglenes mappa." msgstr "Hiányzik egy ideiglenes mappa."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Nem sikerült lemezre írni a fájlt." 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." msgid "File upload stopped by extension."
msgstr "A fájlfeltöltés kiterjesztés alapján leállt." 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." msgid "Unknown error in file upload."
msgstr "Ismeretlen hiba a fájlfeltöltésben." msgstr "Ismeretlen hiba a fájlfeltöltésben."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1936,7 +1936,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "vagy pontosvessző hiányzik valahol.<br />Ha üres oldalt kap, akkor minden "
"rendben." "rendben."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
"Nem lehetett betölteni az alapértelmezett konfigurációt innen: \"%1$s\"" "Nem lehetett betölteni az alapértelmezett konfigurációt innen: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1967,27 +1967,27 @@ msgstr ""
"A <tt>$cfg['PmaAbsoluteUri']</tt> utasítás értékét a konfigurációs fájlban " "A <tt>$cfg['PmaAbsoluteUri']</tt> utasítás értékét a konfigurációs fájlban "
"KELL megadni!" "KELL megadni!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Érvénytelen szerverindex: \"%s\"" msgstr "Érvénytelen szerverindex: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." 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." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Szerver" msgstr "Szerver"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" 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:" 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 #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Frissítenie kell %s %s vagy újabb verzióra." msgstr "Frissítenie kell %s %s vagy újabb verzióra."
@@ -2229,11 +2229,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Szerkezet és adatok" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3321,7 +3321,7 @@ msgstr "A választható szerverek megjelenítése"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "A táblalistában megjelenítendő táblák száma"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4606,7 +4606,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "A következő IP-cím hibás: %s" msgstr "A következő IP-cím hibás: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4741,19 +4741,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Új tábla létrehozása a(z) %s adatbázisban"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Új tábla létrehozása a(z) %s adatbázisban"
#: libraries/display_export.lib.php:97 #: 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:" msgid "Export Method:"
msgstr "Exportálás típusa" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4893,9 +4903,11 @@ msgstr "\"bzip tömörítés\""
msgid "Format:" msgid "Format:"
msgstr "Formátum" msgstr "Formátum"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| 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 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4992,6 +5004,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Az elejétől kihagyandó rekordok (lekérdezések) száma" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6332,7 +6348,7 @@ msgstr "nincs leírás"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Szerverbeállítások" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -8297,46 +8313,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Csak a szerkezet"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Csak a szerkezet"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgid "Rename view to"
msgstr "Nézet átnevezése" msgstr "Nézet átnevezése"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Indítás"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

147
po/id.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-09-16 05:35+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap@yahoo.com>\n" "Last-Translator: Azhari Harahap <azhari.harahap@yahoo.com>\n"
"Language-Team: indonesian <id@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 %" "Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %"
"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." "sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Gagal membaca File" msgstr "Gagal membaca File"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1472,39 +1472,39 @@ msgstr "per detik"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"File yang di upload melewati ketentuan upload_max_filesize dalam php.ini." "File yang di upload melewati ketentuan upload_max_filesize dalam php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
"File yang di upload melewati MAX_FILE_SIZE yang ditentukan dalam form HTML." "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." msgid "The uploaded file was only partially uploaded."
msgstr "File yang di upload hanya ter-upload sebagian." msgstr "File yang di upload hanya ter-upload sebagian."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Folder sementara tidak ditemukan." msgstr "Folder sementara tidak ditemukan."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Gagal menulis file ke disk" msgstr "Gagal menulis file ke disk"
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Upload file dihentikan oleh ekstensi." msgstr "Upload file dihentikan oleh ekstensi."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Kesalahan yang tidak diketahui dalam upload file." msgstr "Kesalahan yang tidak diketahui dalam upload file."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1894,7 +1894,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "ketinggalan.<br />Jika muncul sebuah halaman kosong, artinya tidak ada "
"masalah." "masalah."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Tidak dapat memuat konfigurasi default dari: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
"Directif <tt>$cfg['PmaAbsoluteUri']</tt> WAJIB diset dalam file konfigurasi!" "Directif <tt>$cfg['PmaAbsoluteUri']</tt> WAJIB diset dalam file konfigurasi!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Disarankan untuk meng-update ke %s versi %s atau lebih baru." msgstr "Disarankan untuk meng-update ke %s versi %s atau lebih baru."
@@ -2182,11 +2182,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktur dan 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3221,7 +3221,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4351,7 +4351,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4483,19 +4483,19 @@ msgstr "Tidak dapat memuat plugin export, silahkan periksa instalasi Anda!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Ciptakan tabel baru pada database %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Ciptakan tabel baru pada database %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4504,6 +4504,14 @@ msgstr "Ciptakan tabel baru pada database %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Jenis Ekspor" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4630,9 +4638,11 @@ msgstr "\"Dikompress dengan BZip\""
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Pilihan transformasi"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4713,6 +4723,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6021,7 +6035,7 @@ msgstr "tanpa keterangan"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7924,46 +7938,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Struktur saja"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Struktur saja"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9810,6 +9825,10 @@ msgstr "Nama VIEW"
msgid "Rename view to" msgid "Rename view to"
msgstr "Ubah nama tabel menjadi " msgstr "Ubah nama tabel menjadi "
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sabtu"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

157
po/it.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-09-24 10:00+0200\n"
"Last-Translator: Giovanni Uccio <giovanni.uccio@gmail.com>\n" "Last-Translator: Giovanni Uccio <giovanni.uccio@gmail.com>\n"
"Language-Team: italian <it@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "Fai riferimento alla documentazione %sdocumentation%s Per i modi di aggirare "
"questo limite." "questo limite."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Il file non può essere letto" msgstr "Il file non può essere letto"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1404,38 +1404,38 @@ msgstr "Secondo"
msgid "Font size" msgid "Font size"
msgstr "Dimensione font" 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." 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." msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
"Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML." "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." msgid "The uploaded file was only partially uploaded."
msgstr "Il file è stato solo parzialmente caricato." msgstr "Il file è stato solo parzialmente caricato."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Non trovo la cartella temporanea." msgstr "Non trovo la cartella temporanea."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Non riesco a scrivere il file su disco." 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." msgid "File upload stopped by extension."
msgstr "Caricamento del file interrotto per estensione errata." msgstr "Caricamento del file interrotto per estensione errata."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Errore sconosciuto nel caricamento del file." msgstr "Errore sconosciuto nel caricamento del file."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1831,7 +1831,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 /" "maggior parte dei casi ci sono un apostrofo o una virgoletta mancanti.<br /"
">Se ricevete una pagina bianca, allora è tutto a posto." ">Se ricevete una pagina bianca, allora è tutto a posto."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Non posso caricare la configurazione predefinita da: %1$s" msgstr "Non posso caricare la configurazione predefinita da: %1$s"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1860,27 +1860,27 @@ msgstr ""
"La direttiva <tt>$cfg['PmaAbsoluteUri']</tt> DEVE essere impostata nel file " "La direttiva <tt>$cfg['PmaAbsoluteUri']</tt> DEVE essere impostata nel file "
"di configurazione!" "di configurazione!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Indice server non valido: %s" msgstr "Indice server non valido: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Nome host per il server %1$s non valido. Controlla la tua configurazione." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Metodo di autenticazione settato nella configurazione non valido:" msgstr "Metodo di autenticazione settato nella configurazione non valido:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva."
@@ -2116,11 +2116,11 @@ msgstr "dati"
msgid "structure and data" msgid "structure and data"
msgstr "Struttura e dati" 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" msgid "Quick - display only the minimal options to configure"
msgstr "Rapido - mostra solo le opzioni minime di configurazione" 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" msgid "Custom - display all possible options to configure"
msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione" msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione"
@@ -3184,7 +3184,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "Il numero di tabelle che sono aperte."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4340,7 +4340,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP." msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP."
@@ -4467,23 +4467,37 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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" msgstr "Sto esportando i database dal server corrente"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, fuzzy, php-format
msgid "Exporting tables in the database \"%s\"" #| msgid "Exporting tables in the database \"%s\""
msgid "Exporting tables from \"%s\" database"
msgstr "Sto esportando le tabelle nel database \"%s\"" msgstr "Sto esportando le tabelle nel database \"%s\""
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, fuzzy, php-format
msgid "Exporting rows in the table \"%s\"" #| msgid "Exporting rows in the table \"%s\""
msgid "Exporting rows from \"%s\" table"
msgstr "Sto esportando le colonne nella tabella \"%s\"" msgstr "Sto esportando le colonne nella tabella \"%s\""
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "Metodo di esportazione:" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "Database" msgstr "Database"
@@ -4609,9 +4623,11 @@ msgstr "\"compresso con bzip\""
msgid "Format:" msgid "Format:"
msgstr "Formato" msgstr "Formato"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opzioni di Transformation"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4715,6 +4731,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Numero di record (query) da saltare a partire dall'inizio" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6068,7 +6088,7 @@ msgstr "nessuna Description"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Configurazione del server" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -8010,46 +8030,47 @@ msgstr "Pieno spegnimento"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Solo struttura"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Solo struttura"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10033,6 +10054,10 @@ msgstr "Nome VISTA"
msgid "Rename view to" msgid "Rename view to"
msgstr "Rinomina la tabella in" msgstr "Rinomina la tabella in"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Avvio"
#~ msgid "Display table filter" #~ msgid "Display table filter"
#~ msgstr "Visualizza filtri colonne" #~ msgstr "Visualizza filtri colonne"

147
po/ja.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: japanese <jp@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -861,14 +861,14 @@ msgstr ""
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
"メント%s をご覧ください" "メント%s をご覧ください"
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "ファイルを読み込めませんでした" msgstr "ファイルを読み込めませんでした"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1484,13 +1484,13 @@ msgstr "/秒"
msgid "Font size" msgid "Font size"
msgstr "フォントサイズ" msgstr "フォントサイズ"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ" "アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ"
"レクティブの値を超えています。" "レクティブの値を超えています。"
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1498,27 +1498,27 @@ msgstr ""
"アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ" "アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ"
"クティブの値を超えています。" "クティブの値を超えています。"
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。" msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。"
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "一時フォルダが見つかりません。" msgstr "一時フォルダが見つかりません。"
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "ファイルをディスクに書き込めません。" msgstr "ファイルをディスクに書き込めません。"
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "拡張のせいでファイルのアップロードが中断されました。" msgstr "拡張のせいでファイルのアップロードが中断されました。"
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" msgstr "ファイルのアップロード中に予期しないエラーが発生しました。"
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1914,7 +1914,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1928,13 +1928,13 @@ msgstr ""
"で PHP のエラーメッセージを確認してください。たいていの場合はどこかに引用符や" "で PHP のエラーメッセージを確認してください。たいていの場合はどこかに引用符や"
"セミコロンの抜けがあります。<br />空白のページが表示されれば問題なしです" "セミコロンの抜けがあります。<br />空白のページが表示されれば問題なしです"
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "デフォルトの設定を読み込めませんでした: \"%1$s\"" msgstr "デフォルトの設定を読み込めませんでした: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1942,27 +1942,27 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> はかならず設定ファイルで設定する必要がありま" "<tt>$cfg['PmaAbsoluteUri']</tt> はかならず設定ファイルで設定する必要がありま"
"す!" "す!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "サーバのインデックスが不正です: \"%s\"" msgstr "サーバのインデックスが不正です: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "サーバ" msgstr "サーバ"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "設定ファイルに無効な認証方法が指定されています:" msgstr "設定ファイルに無効な認証方法が指定されています:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "%s を %s 以降にアップグレードしてください" msgstr "%s を %s 以降にアップグレードしてください"
@@ -2200,11 +2200,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "構造とデータ" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3233,7 +3233,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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 "開いているテーブルの数" msgstr "開いているテーブルの数"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4361,7 +4361,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4493,19 +4493,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "現在のスレッドのテーブルロックを許可する" msgstr "現在のスレッドのテーブルロックを許可する"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "データベース %s に新しいテーブルを作成する" msgstr "データベース %s に新しいテーブルを作成する"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "データベース %s に新しいテーブルを作成する" msgstr "データベース %s に新しいテーブルを作成する"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4514,6 +4514,14 @@ msgstr "データベース %s に新しいテーブルを作成する"
msgid "Export Method:" msgid "Export Method:"
msgstr "エクスポート形式" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4645,9 +4653,11 @@ msgstr "\"bzip 形式\""
msgid "Format:" msgid "Format:"
msgstr "フォーマット" msgstr "フォーマット"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "変換オプション"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4745,6 +4755,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "先頭から数えたスキップするレコード(クエリ)の数" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6078,7 +6092,7 @@ msgstr "説明がありません"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7968,46 +7982,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "構造のみ"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "構造のみ"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9935,6 +9950,10 @@ msgstr "VIEW の名前"
msgid "Rename view to" msgid "Rename view to"
msgstr "" msgstr ""
#, fuzzy
#~ msgid "Start"
#~ msgstr "土"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

149
po/ka.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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%" "You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit." "s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "ფაილის წაკითხვა ვერ მოხერხდა" msgstr "ფაილის წაკითხვა ვერ მოხერხდა"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1497,12 +1497,12 @@ msgstr "წამში"
msgid "Font size" msgid "Font size"
msgstr "შრიფტის ზომა" msgstr "შრიფტის ზომა"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini." "The uploaded file exceeds the upload_max_filesize directive in php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1510,27 +1510,27 @@ msgstr ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "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." msgid "Missing a temporary folder."
msgstr "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." msgid "Failed to write file to disk."
msgstr "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." msgid "File upload stopped by extension."
msgstr "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." msgid "Unknown error in file upload."
msgstr "Unknown error in file upload." msgstr "Unknown error in file upload."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1931,7 +1931,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "semicolon is missing somewhere.<br />If you receive a blank page, everything "
"is fine." "is fine."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Could not load default configuration from: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1961,27 +1961,27 @@ msgstr ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Invalid server index: \"%s\"" msgstr "Invalid server index: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "სერვერი" msgstr "სერვერი"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "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 #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "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" msgid "structure and data"
msgstr "სტრუქტურა და მონაცემები" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3309,7 +3309,7 @@ msgstr "Display servers selection"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Maximum number of tables displayed in table list"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4564,7 +4564,7 @@ msgstr "Empty phpMyAdmin control user password while using pmadb"
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "IP მისამართი არასწორია: %s" msgstr "IP მისამართი არასწორია: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4695,19 +4695,19 @@ msgstr "Could not load export plugins, please check your installation!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Allows locking tables for the current thread."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Create new table on database %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Create new table on database %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4716,6 +4716,16 @@ msgstr "Create new table on database %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Export type" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4847,9 +4857,11 @@ msgstr "\"bzip-ით დაარქივებული\""
msgid "Format:" msgid "Format:"
msgstr "ფორმატი" msgstr "ფორმატი"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "გარდაქმნის პარამეტრები"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4945,6 +4957,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Number of records (queries) to skip from start" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6282,7 +6298,7 @@ msgstr "no description"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "სერვერის კონფიგურაცია" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -8224,46 +8240,47 @@ msgstr "Fulltext"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "მხოლოდ სტრუქტურა"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "მხოლოდ სტრუქტურა"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10325,6 +10342,10 @@ msgstr "VIEW name"
msgid "Rename view to" msgid "Rename view to"
msgstr "Rename table to" msgstr "Rename table to"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Startup"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

147
po/ko.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: <cihar@nvyu.net>\n" "Last-Translator: <cihar@nvyu.net>\n"
"Language-Team: korean <ko@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -851,14 +851,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "파일을 읽을 수 없습니다" msgstr "파일을 읽을 수 없습니다"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1415,39 +1415,39 @@ msgstr "초"
msgid "Font size" msgid "Font size"
msgstr "글꼴 크기" msgstr "글꼴 크기"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니" "php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니"
"다." "다."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다." msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "임시 폴더가 없습니다." msgstr "임시 폴더가 없습니다."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "디스크 쓰기에 실패했습니다." msgstr "디스크 쓰기에 실패했습니다."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1834,7 +1834,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1849,37 +1849,37 @@ msgstr ""
"미콜론(;)이 빠져있는 경우가 종종 있습니다.<br />만약 아무것도 보이지 않으면, " "미콜론(;)이 빠져있는 경우가 종종 있습니다.<br />만약 아무것도 보이지 않으면, "
"정상적인 것입니다." "정상적인 것입니다."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "환경설정 파일에서 <tt>$cfg['PmaAbsoluteUri']</tt> 주소를 기입하십시오!" msgstr "환경설정 파일에서 <tt>$cfg['PmaAbsoluteUri']</tt> 주소를 기입하십시오!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "서버" msgstr "서버"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2116,11 +2116,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "구조와 데이터 모두" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3144,7 +3144,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4278,7 +4278,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4404,19 +4404,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다." msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다."
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다." msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다."
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4425,6 +4425,14 @@ msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다."
msgid "Export Method:" msgid "Export Method:"
msgstr "내보내기" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4549,9 +4557,11 @@ msgstr "\"bz 압축\""
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Column-specific privileges"
msgid "Format-specific options:"
msgstr "열(칼럼)에 관한 권한"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4632,6 +4642,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5894,7 +5908,7 @@ msgstr "설명이 없습니다"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7670,46 +7684,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "구조만"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "구조만"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9545,6 +9560,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "테이블 이름 바꾸기" msgstr "테이블 이름 바꾸기"
#, fuzzy
#~ msgid "Start"
#~ msgstr "토"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

142
po/lt.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-11-27 22:17+0200\n"
"Last-Translator: Rytis Slatkevičius <rytis.s@gmail.com>\n" "Last-Translator: Rytis Slatkevičius <rytis.s@gmail.com>\n"
"Language-Team: lithuanian <lt@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 %" "Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %"
"sdokumentaciją%s būdams kaip apeiti šį apribojimą." "sdokumentaciją%s būdams kaip apeiti šį apribojimą."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Negalima perskaityti failo" msgstr "Negalima perskaityti failo"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1379,11 +1379,11 @@ msgstr "Sekundės"
msgid "Font size" msgid "Font size"
msgstr "Šrifto dydis" 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." 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." msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1391,27 +1391,27 @@ msgstr ""
"Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML " "Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML "
"formoje." "formoje."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Įkeliamas failas buvo tik dalinai įkeltas." msgstr "Įkeliamas failas buvo tik dalinai įkeltas."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Trūksta laikino katalogo." msgstr "Trūksta laikino katalogo."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Nepavyko įrašyti failo į diską." msgstr "Nepavyko įrašyti failo į diską."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio." 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." msgid "Unknown error in file upload."
msgstr "Nežinoma klaida failų įkėlime." msgstr "Nežinoma klaida failų įkėlime."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "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." msgid "JSON encoder is needed for chart tooltips."
msgstr "JSON koduoklis reikalingas diagramos paaiškinimams." msgstr "JSON koduoklis reikalingas diagramos paaiškinimams."
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "kabliataškio.<br />Jeigu išvedamas tuščias naršyklės langas - viskas "
"tvarkoje." "tvarkoje."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Nepavyko užkrauti numatytų nustatymų failo iš: %1$s" msgstr "Nepavyko užkrauti numatytų nustatymų failo iš: %1$s"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
"BŪTINA nustatymų faile įrašyti <tt>$cfg['PmaAbsoluteUri']</tt> reikšmę!" "BŪTINA nustatymų faile įrašyti <tt>$cfg['PmaAbsoluteUri']</tt> reikšmę!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Blogas serverio indeksas: %s" msgstr "Blogas serverio indeksas: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Serveris" msgstr "Serveris"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:" msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos."
@@ -2084,11 +2084,11 @@ msgstr "duomenys"
msgid "structure and data" msgid "structure and data"
msgstr "struktūra ir duomenys" 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" msgid "Quick - display only the minimal options to configure"
msgstr "Greitas - rodomi tik minimalūs nustatymai" 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" msgid "Custom - display all possible options to configure"
msgstr "Individualizuotas - rodyti visus nustatymus" msgstr "Individualizuotas - rodyti visus nustatymus"
@@ -3099,7 +3099,7 @@ msgstr "Rodyti serverių pasirinkimą"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4240,7 +4240,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Neteisingas IP adresas: %s" msgstr "Neteisingas IP adresas: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus." 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į!" msgstr "Nepavyko įkelti eksportuojamų plėtinių, prašome patikrinti įdiegtį!"
#: libraries/display_export.lib.php:87 #: 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" msgstr "Eksportuojamos duomenų bazės šiame serveryje"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, fuzzy, php-format
msgid "Exporting tables in the database \"%s\"" #| msgid "Exporting tables in the database \"%s\""
msgid "Exporting tables from \"%s\" database"
msgstr "Eksportuojamos lentelės duomenų bazėje „%s“" msgstr "Eksportuojamos lentelės duomenų bazėje „%s“"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, fuzzy, php-format
msgid "Exporting rows in the table \"%s\"" #| msgid "Exporting rows in the table \"%s\""
msgid "Exporting rows from \"%s\" table"
msgstr "Eksportuojamos eilutės lentelėje „%s“" msgstr "Eksportuojamos eilutės lentelėje „%s“"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "Eksporto tipas:" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "Duomenų bazė(s)" msgstr "Duomenų bazė(s)"
@@ -4486,8 +4502,10 @@ msgstr "bzip"
msgid "Format:" msgid "Format:"
msgstr "Formatas:" msgstr "Formatas:"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
#| msgid "Format-Specific Options:"
msgid "Format-specific options:"
msgstr "Formato specifiniai nustatymai:" msgstr "Formato specifiniai nustatymai:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Praleidžiamų įrašų (eilučių) skaičius, pradedant nuo įrašo:" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5854,7 +5876,7 @@ msgstr "Aprašymo nėra"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Pavaldžiojo (Slave) serverio konfigūracija" 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" msgid "Change or reconfigure master server"
msgstr "Pakeisti arba perkonfigūruoti pagrindinį (master) serverį" msgstr "Pakeisti arba perkonfigūruoti pagrindinį (master) serverį"
@@ -7727,47 +7749,53 @@ msgstr "Pilnas išjungimas"
msgid "Reset slave" msgid "Reset slave"
msgstr "Paleisti iš naujo pavaldųjį serverį (reset slave)" msgstr "Paleisti iš naujo pavaldųjį serverį (reset slave)"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Tik SQL gija %s" msgstr "Tik SQL gija %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Paleisti" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Tik SQL gija %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Sustabdyti" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Tik IO %s gija" 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:" msgid "Error management:"
msgstr "Klaidų valdymas:" msgstr "Klaidų valdymas:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "" msgstr ""
"Klaidų praleidinėjimas gali nuvesti iki nesusinchronizavimo tarp pagrindinio " "Klaidų praleidinėjimas gali nuvesti iki nesusinchronizavimo tarp pagrindinio "
"ir jam pavaldžių serverių!" "ir jam pavaldžių serverių!"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Praleisti šią klaidą" msgstr "Praleisti šią klaidą"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Praleisti sekančius" msgstr "Praleisti sekančius"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "klaidos." msgstr "klaidos."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9687,6 +9715,12 @@ msgstr "VIEW pavadinimas"
msgid "Rename view to" msgid "Rename view to"
msgstr "Pervadinti lentelę į" msgstr "Pervadinti lentelę į"
#~ msgid "Start"
#~ msgstr "Paleisti"
#~ msgid "Stop"
#~ msgstr "Sustabdyti"
#~ msgid "Display table filter" #~ msgid "Display table filter"
#~ msgstr "Rodyti lentelių filtrą" #~ msgstr "Rodyti lentelių filtrą"

147
po/lv.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -864,14 +864,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Nevar nolasīt failu" msgstr "Nevar nolasīt failu"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1473,37 +1473,37 @@ msgstr "sekundē"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1896,7 +1896,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 /" "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ā." ">Ja redzat tukšu lapu, viss ir kārtībā."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1924,26 +1924,26 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> direktīvai ir JĀBŪT nodefinētai Jūsu " "<tt>$cfg['PmaAbsoluteUri']</tt> direktīvai ir JĀBŪT nodefinētai Jūsu "
"konfigurācijas failā!" "konfigurācijas failā!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Serveris" msgstr "Serveris"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Jums ir jāuzliek %s %s vai jaunāks." msgstr "Jums ir jāuzliek %s %s vai jaunāks."
@@ -2182,11 +2182,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktūra un dati" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3214,7 +3214,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4339,7 +4339,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4468,19 +4468,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Ļauj bloķēt tabulas tekošajai darbībai."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Izveidot jaunu tabulu datubāzē %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Izveidot jaunu tabulu datubāzē %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4489,6 +4489,14 @@ msgstr "Izveidot jaunu tabulu datubāzē %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Eksporta veids" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4613,9 +4621,11 @@ msgstr "Arhivēts ar bzip"
msgid "Format:" msgid "Format:"
msgstr "Formats" msgstr "Formats"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformācijas opcijas"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4696,6 +4706,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5980,7 +5994,7 @@ msgstr "Bez apraksta"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7855,46 +7869,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Tikai struktūra"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Tikai struktūra"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9742,6 +9757,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Pārsaukt tabulu uz" msgstr "Pārsaukt tabulu uz"
#, fuzzy
#~ msgid "Start"
#~ msgstr "S"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

147
po/mk.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic <mk@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -864,14 +864,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Податотеката не е можно да се прочита" msgstr "Податотеката не е можно да се прочита"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1471,37 +1471,37 @@ msgstr "во секунда"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1897,7 +1897,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1913,12 +1913,12 @@ msgstr ""
"ги добивате. Во поголемиот број на случаи, најчесто недостасува наводник или " "ги добивате. Во поголемиот број на случаи, најчесто недостасува наводник или "
"точка запирка.<br />Ако добиете празна страница, се е во ред." "точка запирка.<br />Ако добиете празна страница, се е во ред."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1926,26 +1926,26 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> директивата МОРА да биде подесена во " "<tt>$cfg['PmaAbsoluteUri']</tt> директивата МОРА да биде подесена во "
"конфигурациската податотека!" "конфигурациската податотека!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Сервер" msgstr "Сервер"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2187,11 +2187,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Структура и податоци" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3224,7 +3224,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4353,7 +4353,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4484,19 +4484,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "Дозволува заклучување на табели на тековните процеси." msgstr "Дозволува заклучување на табели на тековните процеси."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "Креирај нова табела во базата на податоци %s" msgstr "Креирај нова табела во базата на податоци %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "Креирај нова табела во базата на податоци %s" msgstr "Креирај нова табела во базата на податоци %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4505,6 +4505,14 @@ msgstr "Креирај нова табела во базата на подато
msgid "Export Method:" msgid "Export Method:"
msgstr "Тип на извоз" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4629,9 +4637,11 @@ msgstr "\"bzip\""
msgid "Format:" msgid "Format:"
msgstr "Формат" msgstr "Формат"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Опции на трансформацијата"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4712,6 +4722,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6018,7 +6032,7 @@ msgstr "нема опис"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7919,46 +7933,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Само структура"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Само структура"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9807,6 +9822,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Промени го името на табелата во " msgstr "Промени го името на табелата во "
#, fuzzy
#~ msgid "Start"
#~ msgstr "Саб"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

142
po/mn.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -857,14 +857,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Файл уншигдахгүй байна" msgstr "Файл уншигдахгүй байна"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1471,37 +1471,37 @@ msgstr "секундэд"
msgid "Font size" msgid "Font size"
msgstr "Үсгийн хэмжээ" msgstr "Үсгийн хэмжээ"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1894,7 +1894,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> -ыг тохиргооны файлд тохируулах хэрэгтэй!" "<tt>$cfg['PmaAbsoluteUri']</tt> -ыг тохиргооны файлд тохируулах хэрэгтэй!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Сервэрийн буруу индекс нь: \"%s\"" msgstr "Сервэрийн буруу индекс нь: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Сервэр" msgstr "Сервэр"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа."
@@ -2180,11 +2180,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Бүтэц ба өгөгдөл" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3205,7 +3205,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4326,7 +4326,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4455,19 +4455,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" msgstr "%s ӨС-д шинэ хүснэгт үүсгэх"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" msgstr "%s ӨС-д шинэ хүснэгт үүсгэх"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4476,6 +4476,14 @@ msgstr "%s ӨС-д шинэ хүснэгт үүсгэх"
msgid "Export Method:" msgid "Export Method:"
msgstr "Гаргах төрөл" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4607,9 +4615,11 @@ msgstr "bzip-ээр шахагдсан"
msgid "Format:" msgid "Format:"
msgstr "Тогтнол" msgstr "Тогтнол"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Өөрчлөлийн сонголтууд"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4702,6 +4712,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5997,7 +6011,7 @@ msgstr "тайлбаргүй"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7858,45 +7872,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Зөвхөн бүтэц"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Зөвхөн бүтэц"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

147
po/ms.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: malay <ms@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -863,14 +863,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "" msgstr ""
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1464,37 +1464,37 @@ msgstr "Rekod"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 /" "php yang diterima. Dalam kebanyakan kes quote atau semicolon tertinggal.<br /"
">Jika kamu terima laman kosong, semuanya berjalan lancar." ">Jika kamu terima laman kosong, semuanya berjalan lancar."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
"<tt>$cfg[PmaAbsoluteUri]</tt> MESTI disetkan di dalam fail konfigurasi." "<tt>$cfg[PmaAbsoluteUri]</tt> MESTI disetkan di dalam fail konfigurasi."
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Pelayan" msgstr "Pelayan"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2163,11 +2163,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktur dan 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3186,7 +3186,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4303,7 +4303,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4428,19 +4428,21 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #, fuzzy
msgstr "" #| 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 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Cipta jadual baru pada pangkalan data %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Cipta jadual baru pada pangkalan data %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4449,6 +4451,14 @@ msgstr "Cipta jadual baru pada pangkalan data %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Eksport" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4572,8 +4582,8 @@ msgstr "bzipped"
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" msgid "Format-specific options:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5922,7 +5936,7 @@ msgstr "tiada keterangan"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7714,46 +7728,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Struktur sahaja"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Struktur sahaja"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9585,6 +9600,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Tukarnama jadual ke" msgstr "Tukarnama jadual ke"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sab"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

134
po/nb.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-11-26 12:58+0200\n"
"Last-Translator: <sven.erik.andersen@gmail.com>\n" "Last-Translator: <sven.erik.andersen@gmail.com>\n"
"Language-Team: norwegian <no@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
"%s for måter å omgå denne begrensningen." "%s for måter å omgå denne begrensningen."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Fila kunne ikke leses" msgstr "Fila kunne ikke leses"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1374,13 +1374,13 @@ msgstr "Sekund"
msgid "Font size" msgid "Font size"
msgstr "Fontstørrelse" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Opplastingsfila er større enn upload_max_filesize direktivet definert i php." "Opplastingsfila er større enn upload_max_filesize direktivet definert i php."
"ini." "ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1388,27 +1388,27 @@ msgstr ""
"Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i " "Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i "
"HTML-skjemaet." "HTML-skjemaet."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Opplastingsfila ble bare delvis opplastet." msgstr "Opplastingsfila ble bare delvis opplastet."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Mangler en midlertidig mappe." msgstr "Mangler en midlertidig mappe."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Klarte ikke å skrive fila til harddisken." msgstr "Klarte ikke å skrive fila til harddisken."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Filopplasting stoppet av utvidelse." msgstr "Filopplasting stoppet av utvidelse."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Ukjent feil oppstod under filopplastingen." msgstr "Ukjent feil oppstod under filopplastingen."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1796,7 +1796,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "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." "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 #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s" msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1824,26 +1824,26 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> variabelen MÅ være innstilt i din " "<tt>$cfg['PmaAbsoluteUri']</tt> variabelen MÅ være innstilt i din "
"konfigurasjonsfil!" "konfigurasjonsfil!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Ugyldig tjenerindeks: \"%s\"" msgstr "Ugyldig tjenerindeks: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Tjener" msgstr "Tjener"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:" msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Du burde oppgradere til %s %s eller nyere." msgstr "Du burde oppgradere til %s %s eller nyere."
@@ -2077,11 +2077,11 @@ msgstr "data"
msgid "structure and data" msgid "structure and data"
msgstr "struktur og 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3146,7 +3146,7 @@ msgstr "Vis tjenerutvalg"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Maks antall tabeller vist i tabellista"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4376,7 +4376,7 @@ msgstr "Blankt phpMyAdmin kontrollbrukerpassord for bruk av pmadb"
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Ugyldig IP addresse: %s" msgstr "Ugyldig IP addresse: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." 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 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Tillater låsing av tabeller for den kjørende tråden."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Opprett ny tabell i database %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Opprett ny tabell i database %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4523,6 +4523,16 @@ msgstr "Opprett ny tabell i database %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Eksporttype" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4656,9 +4666,11 @@ msgstr "Komprimert (bz2)"
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformasjonsvalg"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4761,6 +4773,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Antall poster(spørringer) å hoppe over fra start" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6097,7 +6113,7 @@ msgstr "ingen beskrivelse"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Slavekonfigurasjon" 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" msgid "Change or reconfigure master server"
msgstr "Endre eller rekonfigurer mastertjener" msgstr "Endre eller rekonfigurer mastertjener"
@@ -7976,45 +7992,51 @@ msgstr "Full stopp"
msgid "Reset slave" msgid "Reset slave"
msgstr "Resett slave" msgstr "Resett slave"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Kun SQL tråd %s" msgstr "Kun SQL tråd %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Start" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Kun SQL tråd %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Stopp" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Kun IO tråd %s" 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:" msgid "Error management:"
msgstr "Feilbehandling:" msgstr "Feilbehandling:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "Å hoppe over feil kan føre til usynkroniserte master og 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" msgid "Skip current error"
msgstr "Hopp over nåværende feil" msgstr "Hopp over nåværende feil"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Hopp over neste" msgstr "Hopp over neste"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "feil." msgstr "feil."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10069,6 +10091,12 @@ msgstr "VIEW navn"
msgid "Rename view to" msgid "Rename view to"
msgstr "Endre tabellens navn" msgstr "Endre tabellens navn"
#~ msgid "Start"
#~ msgstr "Start"
#~ msgid "Stop"
#~ msgstr "Stopp"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

341
po/nl.po

File diff suppressed because it is too large Load Diff

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -833,14 +833,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "" msgstr ""
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, possible-php-format #, possible-php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1357,37 +1357,37 @@ msgstr ""
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1764,7 +1764,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1774,37 +1774,37 @@ msgid ""
"is fine." "is fine."
msgstr "" msgstr ""
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, possible-php-format #, possible-php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, possible-php-format #, possible-php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, possible-php-format #, possible-php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "" msgstr ""
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, possible-php-format #, possible-php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2037,11 +2037,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3006,7 +3006,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4099,7 +4099,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, possible-php-format #, possible-php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4222,23 +4222,31 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, possible-php-format #, possible-php-format
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, possible-php-format #, possible-php-format
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "" msgstr ""
@@ -4340,8 +4348,8 @@ msgstr ""
msgid "Format:" msgid "Format:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" msgid "Format-specific options:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5640,7 +5652,7 @@ msgstr ""
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7315,45 +7327,43 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, possible-php-format msgid "Start SQL Thread only"
msgid "IO Thread %s only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:328
msgid "Error management:" msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:332 #: server_replication.php:331
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Start IO Thread only"
msgstr "" msgstr ""
#: server_replication.php:334 #: server_replication.php:333
msgid "Skip current error" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, possible-php-format #, possible-php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

134
po/pl.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-09-27 23:53+0200\n"
"Last-Translator: Jarosław Głowacki <glowacki@europa.pl>\n" "Last-Translator: Jarosław Głowacki <glowacki@europa.pl>\n"
"Language-Team: polish <pl@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego "
"limitu, proszę zapoznać się z %sdokumenacją%s." "limitu, proszę zapoznać się z %sdokumenacją%s."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Nie można odczytać pliku" msgstr "Nie można odczytać pliku"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1492,13 +1492,13 @@ msgstr "na sekundę"
msgid "Font size" msgid "Font size"
msgstr "Rozmiar pisma" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Rozmiar wrzucanego pliku jest większy niż wartość dyrektywy " "Rozmiar wrzucanego pliku jest większy niż wartość dyrektywy "
"upload_max_filesize w php.ini." "upload_max_filesize w php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1506,27 +1506,27 @@ msgstr ""
"Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE " "Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE "
"określonej w formularzu HTML." "określonej w formularzu HTML."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Plik został przesłany jedynie częściowo." msgstr "Plik został przesłany jedynie częściowo."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Nie znaleziono katalogu tymczasowego." msgstr "Nie znaleziono katalogu tymczasowego."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Nie udało się zapisać pliku na dysk." 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." msgid "File upload stopped by extension."
msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie." 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." msgid "Unknown error in file upload."
msgstr "Nieznany błąd przesyłania pliku." msgstr "Nieznany błąd przesyłania pliku."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1928,7 +1928,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "przypadków brakuje gdzieś cudzysłowu lub średnika.<br />Jeżeli otrzymasz "
"pustą stronę, wszystko jest w porządku." "pustą stronę, wszystko jest w porządku."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" 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 "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1958,28 +1958,28 @@ msgstr ""
"Dyrektywa <tt>$cfg['PmaAbsoluteUri']</tt> musi być ustawiona w pliku " "Dyrektywa <tt>$cfg['PmaAbsoluteUri']</tt> musi być ustawiona w pliku "
"konfiguracyjnym!" "konfiguracyjnym!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Niewłaściwy numer serwera: \"%s\"" msgstr "Niewłaściwy numer serwera: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Serwer" msgstr "Serwer"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:" msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Zaleca się aktualizację do %s w wersji %s lub nowszej." msgstr "Zaleca się aktualizację do %s w wersji %s lub nowszej."
@@ -2221,11 +2221,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktura i dane" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3280,7 +3280,7 @@ msgstr "Wyświetlaj wybór serwerów"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Maksymalna liczba tabel pokazywanych na liście tabel"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4516,7 +4516,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Nieprawidłowy adres IP: %s" msgstr "Nieprawidłowy adres IP: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4650,19 +4650,19 @@ msgstr "Nie udało się załadować modułów eksportu, proszę sprawdzić insta
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Pozwól blokować tabele dla aktualnego wątku."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Utwórz nową tabelę w bazie danych %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Utwórz nową tabelę w bazie danych %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4671,6 +4671,16 @@ msgstr "Utwórz nową tabelę w bazie danych %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Rodzaj eksportu" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4802,9 +4812,11 @@ msgstr "\".bz2\""
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcje transformacji"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4906,6 +4918,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Liczba rekordów (zapytań), które należy z początku pominąć" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6242,7 +6258,7 @@ msgstr "brak opisu"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Konfiguracja serwera podrzędnego" 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" msgid "Change or reconfigure master server"
msgstr "Zmień lub skonfiguruj ponownie serwer główny" msgstr "Zmień lub skonfiguruj ponownie serwer główny"
@@ -8191,45 +8207,51 @@ msgstr "Całkowity stop"
msgid "Reset slave" msgid "Reset slave"
msgstr "Zrestartuj serwer podrzędny" msgstr "Zrestartuj serwer podrzędny"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Tylko wątek SQL %s" msgstr "Tylko wątek SQL %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Start" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Tylko wątek SQL %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Stop" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Tylko wątek IO %s" 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:" msgid "Error management:"
msgstr "Błąd zarządzania:" msgstr "Błąd zarządzania:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "" msgstr ""
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Pomiń bieżący błąd" msgstr "Pomiń bieżący błąd"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Pomiń następny" msgstr "Pomiń następny"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "błędy." msgstr "błędy."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10303,6 +10325,12 @@ msgstr "Nazwa widoku"
msgid "Rename view to" msgid "Rename view to"
msgstr "Zmień nazwę tabeli na" msgstr "Zmień nazwę tabeli na"
#~ msgid "Start"
#~ msgstr "Start"
#~ msgid "Stop"
#~ msgstr "Stop"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

152
po/pt.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-22 02:23+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: portuguese <pt@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -869,14 +869,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Não foi possível ler o ficheiro" msgstr "Não foi possível ler o ficheiro"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1477,37 +1477,37 @@ msgstr "por segundo"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1894,7 +1894,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "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." "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 #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1923,26 +1923,26 @@ msgstr ""
"A directiva <tt>$cfg['PmaAbsoluteUri']</tt> TEM que ser definida no ficheiro " "A directiva <tt>$cfg['PmaAbsoluteUri']</tt> TEM que ser definida no ficheiro "
"de configuração!" "de configuração!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Servidor" msgstr "Servidor"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "deve actualizar para %s %s ou mais recente." msgstr "deve actualizar para %s %s ou mais recente."
@@ -2181,11 +2181,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Estrutura e dados" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3221,7 +3221,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4348,7 +4348,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4474,19 +4474,21 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #, fuzzy
msgstr "" #| 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 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Criar nova tabela na base de dados %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Criar nova tabela na base de dados %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4495,6 +4497,15 @@ msgstr "Criar nova tabela na base de dados %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Tipo de Exportação" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4619,9 +4630,11 @@ msgstr "\"Compressão bzip\""
msgid "Format:" msgid "Format:"
msgstr "Formato" msgstr "Formato"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| 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 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4702,6 +4715,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5983,7 +6000,7 @@ msgstr "sem Descrição"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7804,46 +7821,47 @@ msgstr "Texto Completo"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Somente estrutura"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Somente estrutura"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9686,6 +9704,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Renomeia a tabela para " msgstr "Renomeia a tabela para "
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sab"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-10-21 05:02+0200\n"
"Last-Translator: <fabiobucior@gmail.com>\n" "Last-Translator: <fabiobucior@gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
"na %sdocumentation%s para burlar esses limites." "na %sdocumentation%s para burlar esses limites."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "O arquivo não pode ser lido" msgstr "O arquivo não pode ser lido"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1470,13 +1470,13 @@ msgstr "por segundo"
msgid "Font size" msgid "Font size"
msgstr "Tamanho da fonte" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"O arquivo carregado excede o tamanho definido na diretriz " "O arquivo carregado excede o tamanho definido na diretriz "
"upload_max_filesize no php.ini." "upload_max_filesize no php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1484,27 +1484,27 @@ msgstr ""
"O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do " "O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do "
"formulário HTM." "formulário HTM."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Carregamento do arquivo foi apenas parcial." msgstr "Carregamento do arquivo foi apenas parcial."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Pasta temporária não encontrada." msgstr "Pasta temporária não encontrada."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Falhou ao salvar arquivo no disco." msgstr "Falhou ao salvar arquivo no disco."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Carregamento do arquivo parado pela extenção." msgstr "Carregamento do arquivo parado pela extenção."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Erro desconhecido no carregamento do arquivo." msgstr "Erro desconhecido no carregamento do arquivo."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1902,7 +1902,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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." "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." "<br />Se receber uma página em branco, está tudo certo."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" 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 "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "A variável <tt>$cfg['PmaAbsoluteUri']</tt> deve ser setada" msgstr "A variável <tt>$cfg['PmaAbsoluteUri']</tt> deve ser setada"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Índice de servidor inválido: \"%s\"" msgstr "Índice de servidor inválido: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Servidor" msgstr "Servidor"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Método de autenticação inválido informado nas configurações:" msgstr "Método de autenticação inválido informado nas configurações:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Você deveria atualizar para %s %s ou posterior." msgstr "Você deveria atualizar para %s %s ou posterior."
@@ -2191,11 +2191,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Estrutura e dados" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3242,7 +3242,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "O número de tabelas que estão abertas."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4387,7 +4387,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4518,19 +4518,19 @@ msgstr "Não pode carregar exportação dos plugins, verifique sua instalação!
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Permitir bloquear tabelas para a processo atual."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Criar nova tabela no Banco de Dados %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Criar nova tabela no Banco de Dados %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4539,6 +4539,15 @@ msgstr "Criar nova tabela no Banco de Dados %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Tipo de exportação" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4670,9 +4679,11 @@ msgstr "\"compactado com bzip\""
msgid "Format:" msgid "Format:"
msgstr "Formato" msgstr "Formato"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| 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 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4768,6 +4779,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Número de registros (consultas) ignoradas no início" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6073,7 +6088,7 @@ msgstr "sem Descrição"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7986,46 +8001,47 @@ msgstr "Texto completo"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Somente estrutura"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Somente estrutura"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgid "Rename view to"
msgstr "Renomear a tabela para " msgstr "Renomear a tabela para "
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sab"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

148
po/ro.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: romanian <ro@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 %" "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." "sdocumentație%s pentru căi de ocolire a acestei limite."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Fișierul nu poate fi citit" msgstr "Fișierul nu poate fi citit"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1501,11 +1501,11 @@ msgstr "pe secundă"
msgid "Font size" msgid "Font size"
msgstr "Dimensiune font" 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." 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." 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 "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1513,27 +1513,27 @@ msgstr ""
"Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în " "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în "
"formularul HTML." "formularul HTML."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Fișierul a fost încărcat numai parțial." 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." msgid "Missing a temporary folder."
msgstr "Lipsește un dosar temporar." msgstr "Lipsește un dosar temporar."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Eșec la scrierea fișierului pe disc." 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." msgid "File upload stopped by extension."
msgstr "Încărcarea fișierului a fost împiedicată de extensie." 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." msgid "Unknown error in file upload."
msgstr "Eroare necunoscută la încărcarea fișierului." msgstr "Eroare necunoscută la încărcarea fișierului."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1935,7 +1935,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "lipsesc apostroful sau ghilimele.<br />Daca primesti o pagina goala, totul "
"pare sa fie bine." "pare sa fie bine."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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”" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1965,29 +1965,29 @@ msgstr ""
"Directiva <tt>$cfg['PmaAbsoluteUri']</tt> TREBUIE să fie stabilită în " "Directiva <tt>$cfg['PmaAbsoluteUri']</tt> TREBUIE să fie stabilită în "
"fișierul de configurare!" "fișierul de configurare!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Index de server nevalid: „%s”" msgstr "Index de server nevalid: „%s”"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația "
"dumneavoastră." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Metodă de autentificare nevalidă stabilită în configurație:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua."
@@ -2228,11 +2228,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Structura și date" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3279,7 +3279,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "Numărul de tabele ce sînt deschise."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4422,7 +4422,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4553,19 +4553,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Permite blocarea tabelelor din firul curent de execuție."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Creează tabel nou în baza de date %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Creează tabel nou în baza de date %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4574,6 +4574,15 @@ msgstr "Creează tabel nou în baza de date %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Modul de export" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4705,9 +4714,11 @@ msgstr "cu „bzip2”"
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opțiuni de transformare"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4802,6 +4813,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Number of records(queries) to skip from start" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6136,7 +6151,7 @@ msgstr "Nu există descriere"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -8062,46 +8077,47 @@ msgstr "Tot textul"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Numai structura"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Numai structura"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10062,6 +10078,10 @@ msgstr "Denumire VIZIUNE"
msgid "Rename view to" msgid "Rename view to"
msgstr "Redenumire tabel la" msgstr "Redenumire tabel la"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Dum"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

134
po/ru.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-22 02:27+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: russian <ru@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -871,14 +871,14 @@ msgstr ""
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
"ограничения описаны в %sдокументации%s." "ограничения описаны в %sдокументации%s."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Ошибка при чтении файла" msgstr "Ошибка при чтении файла"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1505,13 +1505,13 @@ msgstr "в секунду"
msgid "Font size" msgid "Font size"
msgstr "Размер шрифта" msgstr "Размер шрифта"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Размер загружаемого файла превышает значение директивы upload_max_filesize " "Размер загружаемого файла превышает значение директивы upload_max_filesize "
"установленное в конфигурационном файле PHP (php.ini)." "установленное в конфигурационном файле PHP (php.ini)."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1519,27 +1519,27 @@ msgstr ""
"Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, " "Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, "
"определенной в HTML форме." "определенной в HTML форме."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Загруженный файл был загружен только частично." msgstr "Загруженный файл был загружен только частично."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Не найден каталог для хранения временных файлов." msgstr "Не найден каталог для хранения временных файлов."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Ошибка при попытке записи файла на диск." msgstr "Ошибка при попытке записи файла на диск."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Загрузка файла остановлена из-за расширения." msgstr "Загрузка файла остановлена из-за расширения."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "При время загрузке файла произошла неизвестная ошибка." msgstr "При время загрузке файла произошла неизвестная ошибка."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1939,7 +1939,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1955,13 +1955,13 @@ msgstr ""
"синтаксическая ошибка, например, где-то пропущена кавычка или точка с " "синтаксическая ошибка, например, где-то пропущена кавычка или точка с "
"запятой.<br />Если отобразится пустая страница - все в порядке." "запятой.<br />Если отобразится пустая страница - все в порядке."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Невозможно загрузить изначальную конфигурацию из: &quot;%1$s&quot;" msgstr "Невозможно загрузить изначальную конфигурацию из: &quot;%1$s&quot;"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1969,30 +1969,30 @@ msgstr ""
"Директива <tt>$cfg['PmaAbsoluteUri']</tt> ДОЛЖНА быть установлена в " "Директива <tt>$cfg['PmaAbsoluteUri']</tt> ДОЛЖНА быть установлена в "
"конфигурационном файле!" "конфигурационном файле!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Неправильный номер сервера: &quot;%s&quot;" msgstr "Неправильный номер сервера: &quot;%s&quot;"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в "
"конфигурационном файле phpMyAdmin." "конфигурационном файле 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Сервер" msgstr "Сервер"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
"В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Необходимо обновить %s до версии %s или выше." msgstr "Необходимо обновить %s до версии %s или выше."
@@ -2233,11 +2233,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Структура и данные" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3331,7 +3331,7 @@ msgstr "Отображать выбор сервера"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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 "Максимальное количество таблиц отображаемых в списке" msgstr "Максимальное количество таблиц отображаемых в списке"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4618,7 +4618,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Некорректно введен IP адрес: %s" msgstr "Некорректно введен IP адрес: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4752,19 +4752,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "Разрешает блокировку таблиц для текущего потока" msgstr "Разрешает блокировку таблиц для текущего потока"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "Создать новую таблицу в базе данных %s" msgstr "Создать новую таблицу в базе данных %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "Создать новую таблицу в базе данных %s" msgstr "Создать новую таблицу в базе данных %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4773,6 +4773,16 @@ msgstr "Создать новую таблицу в базе данных %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Тип экспорта" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4906,9 +4916,11 @@ msgstr "bzip"
msgid "Format:" msgid "Format:"
msgstr "Формат" msgstr "Формат"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Параметры преобразований"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -5009,6 +5021,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Количество запросов пропускаемых от начала импорта" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6354,7 +6370,7 @@ msgstr "нет описания"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Настройка подчиненного сервера" 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" msgid "Change or reconfigure master server"
msgstr "Изменить, или перенастроить головной сервер" msgstr "Изменить, или перенастроить головной сервер"
@@ -8322,29 +8338,35 @@ msgstr "Полная остановка"
msgid "Reset slave" msgid "Reset slave"
msgstr "Сбросить подчиненный сервер" msgstr "Сбросить подчиненный сервер"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "SQL только поток %s" msgstr "SQL только поток %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Старт" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "SQL только поток %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Стоп" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "IO только поток %s" 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:" msgid "Error management:"
msgstr "Управление ошибками:" msgstr "Управление ошибками:"
#: server_replication.php:332 #: server_replication.php:340
#, fuzzy #, fuzzy
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!" #| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors 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" msgid "Skip current error"
msgstr "Игнорировать текущую ошибку" msgstr "Игнорировать текущую ошибку"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Пропустить следующую" msgstr "Пропустить следующую"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "ошибки." msgstr "ошибки."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10480,6 +10502,12 @@ msgstr "VIEW название"
msgid "Rename view to" msgid "Rename view to"
msgstr "Переименовать таблицу в" msgstr "Переименовать таблицу в"
#~ msgid "Start"
#~ msgstr "Старт"
#~ msgid "Stop"
#~ msgstr "Стоп"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

148
po/si.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-22 02:26+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: sinhala <si@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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%" "You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit." "s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "ගොනුව කියවිය නොහැක" msgstr "ගොනුව කියවිය නොහැක"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1487,37 +1487,37 @@ msgstr "තප්පරයකට"
msgid "Font size" msgid "Font size"
msgstr "ෆොන්ට් එකෙහි ප්‍රමාණය" msgstr "ෆොන්ට් එකෙහි ප්‍රමාණය"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1913,7 +1913,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "semicolon is missing somewhere.<br />If you receive a blank page, everything "
"is fine." "is fine."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Could not load default configuration from: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1943,27 +1943,27 @@ msgstr ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Invalid server index: \"%s\"" msgstr "Invalid server index: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "සර්වරය" msgstr "සර්වරය"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "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 #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "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" msgid "structure and data"
msgstr "සැකිල්ල සහ දත්ත" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3252,7 +3252,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "The number of tables that are open."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4387,7 +4387,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4517,19 +4517,19 @@ msgstr "Could not load export plugins, please check your installation!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Allows locking tables for the current thread."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන්න" msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන්න"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන්න" msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන්න"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4538,6 +4538,15 @@ msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන
msgid "Export Method:" msgid "Export Method:"
msgstr "අපනයන වර්ගය" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4669,9 +4678,11 @@ msgstr "\"bzipp ගතකරන ලදි\""
msgid "Format:" msgid "Format:"
msgstr "ආකෘතිය" msgstr "ආකෘතිය"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformation options"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4766,6 +4777,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Number of records(queries) to skip from start" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6068,7 +6083,7 @@ msgstr "no description"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7955,46 +7970,47 @@ msgstr "සම්පූර්ණ පාඨය"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Structure only"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Structure only"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9947,6 +9963,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "වගුව බවට නම වෙනස් කරන්න" msgstr "වගුව බවට නම වෙනස් කරන්න"
#, fuzzy
#~ msgid "Start"
#~ msgstr "සෙනසුරාදා"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

148
po/sk.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-22 02:26+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: slovak <sk@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "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ť." "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Súbor sa nedá prečítať" msgstr "Súbor sa nedá prečítať"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1497,37 +1497,37 @@ msgstr "za sekundu"
msgid "Font size" msgid "Font size"
msgstr "Veľkosť písma" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1925,7 +1925,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "chýbajúcu úvodzovku alebo bodkočiarku.<br />Ak dostanete iba prázdnu "
"stránku, všetko je v poriadku." "stránku, všetko je v poriadku."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1955,27 +1955,27 @@ msgstr ""
"Direktíva <tt>$cfg['PmaAbsoluteUri']</tt> v konfiguračnom súbore MUSÍ byť " "Direktíva <tt>$cfg['PmaAbsoluteUri']</tt> v konfiguračnom súbore MUSÍ byť "
"nastavená!" "nastavená!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Chybný index serveru: \"%s\"" msgstr "Chybný index serveru: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." 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." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:" msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu." msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu."
@@ -2215,11 +2215,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Štruktúru a dáta" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3261,7 +3261,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "Počet práve otvorených tabuliek."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4400,7 +4400,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4530,19 +4530,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Vytvoriť novú tabuľku v databáze %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Vytvoriť novú tabuľku v databáze %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4551,6 +4551,14 @@ msgstr "Vytvoriť novú tabuľku v databáze %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Typ vytvorených dopytov" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4684,9 +4692,11 @@ msgstr "\"bzipped\""
msgid "Format:" msgid "Format:"
msgstr "Formát" msgstr "Formát"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Parametre transformácie"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4787,6 +4797,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" 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ť" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6085,7 +6099,7 @@ msgstr "bez Popisu"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Slave replikácia" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7979,45 +7993,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Iba štruktúru"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Iba štruktúru"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9992,6 +10008,12 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Premenovať tabuľku na" msgstr "Premenovať tabuľku na"
#~ msgid "Start"
#~ msgstr "Štart"
#~ msgid "Stop"
#~ msgstr "Stop"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

142
po/sl.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-11-30 17:31+0200\n"
"Last-Translator: Domen <dbc334@gmail.com>\n" "Last-Translator: Domen <dbc334@gmail.com>\n"
"Language-Team: slovenian <sl@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
"%sdokumentacijo%s za načine, kako obiti to omejitev." "%sdokumentacijo%s za načine, kako obiti to omejitev."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Ne morem prebrati datoteke" msgstr "Ne morem prebrati datoteke"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1383,11 +1383,11 @@ msgstr "Sekunda"
msgid "Font size" msgid "Font size"
msgstr "Velikost pisave" 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." 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." msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1395,27 +1395,27 @@ msgstr ""
"Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu " "Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu "
"HTML." "HTML."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Naložena datoteka je bila naložena samo delno." 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." msgid "Missing a temporary folder."
msgstr "Manjka začasna mapa." msgstr "Manjka začasna mapa."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Pisanje datoteke na disk je spodletelo." msgstr "Pisanje datoteke na disk je spodletelo."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Nalaganje datoteke je ustavila razširitev." msgstr "Nalaganje datoteke je ustavila razširitev."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Neznana napaka pri nalaganju datoteke." msgstr "Neznana napaka pri nalaganju datoteke."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "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." msgid "JSON encoder is needed for chart tooltips."
msgstr "Za zaslonske namige grafikonov je potreben kodirnik JSON." msgstr "Za zaslonske namige grafikonov je potreben kodirnik JSON."
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "večini primerov gre za manjkajoči narekovaj ali podpičje.<br />Če dobite "
"prazno stran, je vse v redu." "prazno stran, je vse v redu."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s" msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1838,28 +1838,28 @@ msgstr ""
"Ukaz <tt>$cfg['PmaAbsoluteUri']</tt> MORA biti določen v konfiguracijski " "Ukaz <tt>$cfg['PmaAbsoluteUri']</tt> MORA biti določen v konfiguracijski "
"datoteki!" "datoteki!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Neveljaven indeks strežnika: %s" msgstr "Neveljaven indeks strežnika: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo "
"konfiguracijo." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Strežnik" msgstr "Strežnik"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:" msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "%s bi morali nadgraditi na različico %s ali novejšo." msgstr "%s bi morali nadgraditi na različico %s ali novejšo."
@@ -2092,11 +2092,11 @@ msgstr "podatki"
msgid "structure and data" msgid "structure and data"
msgstr "struktura in podatki" 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" msgid "Quick - display only the minimal options to configure"
msgstr "Hitro - prikaži kar najmanj možnosti za konfiguriranje" 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" msgid "Custom - display all possible options to configure"
msgstr "Po meri - prikaži vse mogoče možnosti za konfiguriranje" 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 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Največje število tabel prikazanih na seznamu tabel"
#: libraries/config/messages.inc.php:268 #: 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" msgid "Incorrect IP address: %s"
msgstr "Napačen IP-naslov: %s" msgstr "Napačen IP-naslov: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "Razširitev %s manjka. Prosimo, preverite vašo konfiguracijo PHP." 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!" "Ne morem naložiti vtičnikov za izvoz, prosimo, preverite vašo namestitev!"
#: libraries/display_export.lib.php:87 #: 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" msgstr "Izvažanje zbirk podatkov na trenutnem strežniku"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, fuzzy, php-format
msgid "Exporting tables in the database \"%s\"" #| msgid "Exporting tables in the database \"%s\""
msgid "Exporting tables from \"%s\" database"
msgstr "Izvažanje tabel v zbirki podatkov \"%s\"" msgstr "Izvažanje tabel v zbirki podatkov \"%s\""
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, fuzzy, php-format
msgid "Exporting rows in the table \"%s\"" #| msgid "Exporting rows in the table \"%s\""
msgid "Exporting rows from \"%s\" table"
msgstr "Izvažanje vrstic v tabeli \"%s\"" msgstr "Izvažanje vrstic v tabeli \"%s\""
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "Način izvoza:" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "Zbirke podatkov:" msgstr "Zbirke podatkov:"
@@ -4576,8 +4592,10 @@ msgstr "bzipano"
msgid "Format:" msgid "Format:"
msgstr "Oblika:" msgstr "Oblika:"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
#| msgid "Format-Specific Options:"
msgid "Format-specific options:"
msgstr "Možnosti odvisne od oblike:" msgstr "Možnosti odvisne od oblike:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Število vrstic, ki jih naj preskočim od prve vrstice:" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5992,7 +6014,7 @@ msgstr "brez opisa"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Konfiguracija podrejencev" 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" msgid "Change or reconfigure master server"
msgstr "Spremeni ali ponovno konfiguriraj glavni strežnik" msgstr "Spremeni ali ponovno konfiguriraj glavni strežnik"
@@ -7824,47 +7846,53 @@ msgstr "Polni konec"
msgid "Reset slave" msgid "Reset slave"
msgstr "Ponovno zaženi podrejenca" msgstr "Ponovno zaženi podrejenca"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Nit SQL samo %s" msgstr "Nit SQL samo %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Začetek" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Nit SQL samo %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Ustavi" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Nit IO samo %s" 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:" msgid "Error management:"
msgstr "Upravljanje napak:" msgstr "Upravljanje napak:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "" msgstr ""
"Preskakovanje napak lahko vodi v nesinhroniziran glavni strežnik in " "Preskakovanje napak lahko vodi v nesinhroniziran glavni strežnik in "
"podrejenec!" "podrejenec!"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Preskoči trenutno napako" msgstr "Preskoči trenutno napako"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Preskoči naslednjo" msgstr "Preskoči naslednjo"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "napak." msgstr "napak."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9843,6 +9871,12 @@ msgstr "Ime VIEW"
msgid "Rename view to" msgid "Rename view to"
msgstr "Preimenuj pogled v" msgstr "Preimenuj pogled v"
#~ msgid "Start"
#~ msgstr "Začetek"
#~ msgid "Stop"
#~ msgstr "Ustavi"
#~ msgid "Display table filter" #~ msgid "Display table filter"
#~ msgstr "Prikaži filter tabel" #~ msgstr "Prikaži filter tabel"

147
po/sq.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: albanian <sq@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -866,14 +866,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "File nuk mund të lexohet" msgstr "File nuk mund të lexohet"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1475,37 +1475,37 @@ msgstr "në sekondë"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1897,7 +1897,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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ë " "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." "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 #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1926,26 +1926,26 @@ msgstr ""
"Direktiva <tt>$cfg['PmaAbsoluteUri']</tt> DUHET të përcaktohet tek file i " "Direktiva <tt>$cfg['PmaAbsoluteUri']</tt> DUHET të përcaktohet tek file i "
"konfigurimit!" "konfigurimit!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Serveri" msgstr "Serveri"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Duhet të instaloni %s %s ose superior." msgstr "Duhet të instaloni %s %s ose superior."
@@ -2182,11 +2182,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktura dhe të dhënat" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3214,7 +3214,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4339,7 +4339,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4466,19 +4466,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Lejon bllokimin e tabelave për thread e momentit."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Krijo një tabelë të re tek databaza %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Krijo një tabelë të re tek databaza %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4487,6 +4487,14 @@ msgstr "Krijo një tabelë të re tek databaza %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Lloji i Eksportit" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4611,9 +4619,11 @@ msgstr "\"kompresuar me bzip2\""
msgid "Format:" msgid "Format:"
msgstr "Formati" msgstr "Formati"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcione të transformimeve"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4694,6 +4704,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5975,7 +5989,7 @@ msgstr "asnjë përshkrim"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7861,46 +7875,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Vetëm struktura"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Vetëm struktura"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9739,6 +9754,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Riemërto tabelën në" msgstr "Riemërto tabelën në"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sht"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

148
po/sr.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: serbian_cyrillic <sr@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -875,14 +875,14 @@ msgstr ""
"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" "Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
"sдокументацију%s за начине превазилажења овог ограничења." "sдокументацију%s за начине превазилажења овог ограничења."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Датотеку није могуће прочитати" msgstr "Датотеку није могуће прочитати"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1496,13 +1496,13 @@ msgstr "у секунди"
msgid "Font size" msgid "Font size"
msgstr "Величина фонта" msgstr "Величина фонта"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Послата датотека превазилази вредност директиве upload_max_filesize у php." "Послата датотека превазилази вредност директиве upload_max_filesize у php."
"ini." "ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1510,27 +1510,27 @@ msgstr ""
"Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је " "Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је "
"наведена у HTML форми." "наведена у HTML форми."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Послата датотека је само делимично примљена." msgstr "Послата датотека је само делимично примљена."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Недостаје привремени директоријум." msgstr "Недостаје привремени директоријум."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Неуспело уписивање датотеке на диск." msgstr "Неуспело уписивање датотеке на диск."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Пријем датотеке заустављен због екстензије." msgstr "Пријем датотеке заустављен због екстензије."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Непозната грешка при слању датотеке." msgstr "Непозната грешка при слању датотеке."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1924,7 +1924,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1940,13 +1940,13 @@ msgstr ""
"недостаје наводник или тачка-зарез.<br />Ако добијете празну страну, све је " "недостаје наводник или тачка-зарез.<br />Ако добијете празну страну, све је "
"у реду." "у реду."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1954,27 +1954,27 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> директива МОРА бити подешена у " "<tt>$cfg['PmaAbsoluteUri']</tt> директива МОРА бити подешена у "
"конфигурационој датотеци!" "конфигурационој датотеци!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Неисправан индекс сервера: \"%s\"" msgstr "Неисправан индекс сервера: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Сервер" msgstr "Сервер"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Неисправан метод аутентикације је задат у конфигурацији:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију."
@@ -2213,11 +2213,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Структура и подаци" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3265,7 +3265,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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 "Број отворених табела." msgstr "Број отворених табела."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4402,7 +4402,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4535,19 +4535,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "Дозвољава закључавање табела текућим процесима." msgstr "Дозвољава закључавање табела текућим процесима."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "Направи нову табелу у бази %s" msgstr "Направи нову табелу у бази %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "Направи нову табелу у бази %s" msgstr "Направи нову табелу у бази %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4556,6 +4556,15 @@ msgstr "Направи нову табелу у бази %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Тип извоза" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4687,9 +4696,11 @@ msgstr "\"бзип-овано\""
msgid "Format:" msgid "Format:"
msgstr "Формат" msgstr "Формат"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Опције трансформације"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4785,6 +4796,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Број записа (упита) које треба прескочити:" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6088,7 +6103,7 @@ msgstr "нема описа"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7989,46 +8004,47 @@ msgstr "Текст кључ"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Само структура"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Само структура"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9982,6 +9998,10 @@ msgstr "назив за VIEW"
msgid "Rename view to" msgid "Rename view to"
msgstr "Промени име табеле у " msgstr "Промени име табеле у "
#, fuzzy
#~ msgid "Start"
#~ msgstr "Суб"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic <sasha.kostic@gmail.com>\n" "Last-Translator: Sasa Kostic <sasha.kostic@gmail.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 %" "Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
"sdokumentaciju%s za načine prevazilaženja ovog ograničenja." "sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Datoteku nije moguće pročitati" msgstr "Datoteku nije moguće pročitati"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1486,13 +1486,13 @@ msgstr "u sekundi"
msgid "Font size" msgid "Font size"
msgstr "Veličina fonta" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php." "Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php."
"ini." "ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1500,27 +1500,27 @@ msgstr ""
"Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je " "Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je "
"navedena u HTML formi." "navedena u HTML formi."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Poslata datoteka je samo delimično primljena." msgstr "Poslata datoteka je samo delimično primljena."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Nedostaje privremeni direktorijum." msgstr "Nedostaje privremeni direktorijum."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Neuspelo upisivanje datoteke na disk." msgstr "Neuspelo upisivanje datoteke na disk."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Prijem datoteke zaustavljen zbog ekstenzije." msgstr "Prijem datoteke zaustavljen zbog ekstenzije."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Nepoznata greška pri slanju datoteke." msgstr "Nepoznata greška pri slanju datoteke."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1914,7 +1914,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "nedostaje navodnik ili tačka-zarez.<br />Ako dobijete praznu stranu, sve je "
"u redu." "u redu."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1944,27 +1944,27 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> direktiva MORA biti podešena u " "<tt>$cfg['PmaAbsoluteUri']</tt> direktiva MORA biti podešena u "
"konfiguracionoj datoteci!" "konfiguracionoj datoteci!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Neispravan indeks servera: \"%s\"" msgstr "Neispravan indeks servera: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju."
@@ -2203,11 +2203,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktura i podaci" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3253,7 +3253,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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." msgstr "Broj otvorenih tabela."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4390,7 +4390,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4523,19 +4523,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Dozvoljava zaključavanje tabela tekućim procesima."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Napravi novu tabelu u bazi %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Napravi novu tabelu u bazi %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4544,6 +4544,15 @@ msgstr "Napravi novu tabelu u bazi %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Tip izvoza" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4675,9 +4684,11 @@ msgstr "\"bzip-ovano\""
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcije transformacije"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4773,6 +4784,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Broj zapisa (upita) koje treba preskočiti:" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6072,7 +6087,7 @@ msgstr "nema opisa"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7975,46 +7990,47 @@ msgstr "Tekst ključ"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Samo struktura"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Samo struktura"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgid "Rename view to"
msgstr "Promeni ime tabele u " msgstr "Promeni ime tabele u "
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sub"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

149
po/sv.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-21 14:48+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: swedish <sv@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "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." "för metoder att gå runt denna begränsning."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Filen kunde inte läsas" msgstr "Filen kunde inte läsas"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1498,12 +1498,12 @@ msgstr "per sekund"
msgid "Font size" msgid "Font size"
msgstr "Teckenstorlek" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini." "Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1511,27 +1511,27 @@ msgstr ""
"Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades " "Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades "
"i HTML-formuläret." "i HTML-formuläret."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Den uppladdade filen var endast delvis uppladdad." msgstr "Den uppladdade filen var endast delvis uppladdad."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Saknar en temporär katalog." msgstr "Saknar en temporär katalog."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Misslyckades att skriva fil till disk." msgstr "Misslyckades att skriva fil till disk."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Filuppladdning stoppades av tillägg." msgstr "Filuppladdning stoppades av tillägg."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Okänt fel i filuppladdning." msgstr "Okänt fel i filuppladdning."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1933,7 +1933,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "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." "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 #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Kunde inte ladda standardkonfiguration från: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1962,27 +1962,27 @@ msgstr ""
"Variabeln <tt>$cfg['PmaAbsoluteUri']</tt> MÅSTE anges i din " "Variabeln <tt>$cfg['PmaAbsoluteUri']</tt> MÅSTE anges i din "
"konfigurationsfil!" "konfigurationsfil!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Ogiltigt serverindex: \"%s\"" msgstr "Ogiltigt serverindex: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." 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." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Ogiltig metod för autentisering angiven i konfiguration:" msgstr "Ogiltig metod för autentisering angiven i konfiguration:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "Du bör uppgradera till %s %s eller senare." msgstr "Du bör uppgradera till %s %s eller senare."
@@ -2225,11 +2225,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Struktur och 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3313,7 +3313,7 @@ msgstr "Visa serverval"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Maximalt antal tabeller som visas i tabellista"
#: libraries/config/messages.inc.php:268 #: 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" msgid "Incorrect IP address: %s"
msgstr "Felaktig IP-adress: %s" msgstr "Felaktig IP-adress: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4702,19 +4702,19 @@ msgstr "Kunde inte ladda export-tillägg. Kontrollera din installation."
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Tillåter låsning av tabeller för gällande tråd."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Skapa ny tabell i databas %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "Skapa ny tabell i databas %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4723,6 +4723,16 @@ msgstr "Skapa ny tabell i databas %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Export-typ" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4854,9 +4864,11 @@ msgstr "\"bzippad\""
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Omvandlingsparametrar"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4958,6 +4970,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Antal poster (frågor) att hoppa över från början" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6293,7 +6309,7 @@ msgstr "Ingen beskrivning"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Serverkonfiguration" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -8236,46 +8252,47 @@ msgstr "Heltext"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Enbart struktur"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Enbart struktur"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgid "Rename view to"
msgstr "Döp om tabellen till" msgstr "Döp om tabellen till"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Start"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

128
po/ta.po
View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan <sutharshan02@gmail.com>\n" "Last-Translator: Sutharshan <sutharshan02@gmail.com>\n"
"Language-Team: Tamil <ta@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -837,14 +837,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "" msgstr ""
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1407,37 +1407,37 @@ msgstr ""
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1819,7 +1819,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1829,37 +1829,37 @@ msgid ""
"is fine." "is fine."
msgstr "" msgstr ""
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "" msgstr ""
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2092,11 +2092,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3071,7 +3071,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4166,7 +4166,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4289,23 +4289,31 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, php-format
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, php-format
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "" msgstr ""
@@ -4407,8 +4415,8 @@ msgstr ""
msgid "Format:" msgid "Format:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" msgid "Format-specific options:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5713,7 +5725,7 @@ msgstr ""
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7395,45 +7407,43 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format msgid "Start SQL Thread only"
msgid "IO Thread %s only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:328
msgid "Error management:" msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:332 #: server_replication.php:331
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Start IO Thread only"
msgstr "" msgstr ""
#: server_replication.php:334 #: server_replication.php:333
msgid "Skip current error" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

138
po/te.po
View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-11-29 17:44+0200\n"
"Last-Translator: <veeven@gmail.com>\n" "Last-Translator: <veeven@gmail.com>\n"
"Language-Team: Telugu <te@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -852,14 +852,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "" msgstr ""
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1427,37 +1427,37 @@ msgstr "క్షణం"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1843,7 +1843,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1853,37 +1853,37 @@ msgid ""
"is fine." "is fine."
msgstr "" msgstr ""
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "" msgstr ""
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2118,11 +2118,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3100,7 +3100,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4204,7 +4204,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4328,23 +4328,31 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, php-format
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, php-format
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "ఎగుమతి పద్ధతి:" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
@@ -4449,8 +4457,8 @@ msgstr ""
msgid "Format:" msgid "Format:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" msgid "Format-specific options:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5779,7 +5791,7 @@ msgstr "వివరణ లేదు"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7505,47 +7517,43 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format msgid "Start SQL Thread only"
msgid "IO Thread %s only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:328
msgid "Error management:" msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:332 #: server_replication.php:331
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Start IO Thread only"
msgstr "" msgstr ""
#: server_replication.php:334 #: server_replication.php:333
msgid "Skip current error" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9352,6 +9360,14 @@ msgstr "నామధేయమును చూపుము"
msgid "Rename view to" msgid "Rename view to"
msgstr "" msgstr ""
# మొదటి అనువాదము
#~ msgid "Start"
#~ msgstr "మొదలుపెట్టు"
# మొదటి అనువాదము
#~ msgid "Stop"
#~ msgstr "ఆపుము"
#, fuzzy #, fuzzy
#~| msgid "Table comments" #~| msgid "Table comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

147
po/th.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: thai <th@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -861,14 +861,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "อ่านไฟล์ไม่ได้" msgstr "อ่านไฟล์ไม่ได้"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1468,37 +1468,37 @@ msgstr "ต่อวินาที"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1883,7 +1883,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1898,37 +1898,37 @@ msgstr ""
"อะไรหรือไม่ ลองตรวจสอบดูเครื่องหมาย quote หรือ semicolon ว่าใส่ครบหรือเปล่า<br /" "อะไรหรือไม่ ลองตรวจสอบดูเครื่องหมาย quote หรือ semicolon ว่าใส่ครบหรือเปล่า<br /"
">ถ้าคุณเห็นหน้าว่างๆ แสดงว่าทุกอย่างเป็นปกติดี" ">ถ้าคุณเห็นหน้าว่างๆ แสดงว่าทุกอย่างเป็นปกติดี"
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "<b>ต้อง</b>กำหนดค่า <tt>$cfg['PmaAbsoluteUri']</tt> ในไฟล์คอนฟิกูเรชั่นเสียก่อน" msgstr "<b>ต้อง</b>กำหนดค่า <tt>$cfg['PmaAbsoluteUri']</tt> ในไฟล์คอนฟิกูเรชั่นเสียก่อน"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "เซิร์ฟเวอร์" msgstr "เซิร์ฟเวอร์"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2167,11 +2167,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "ทั้งโครงสร้างและข้อมูล" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3200,7 +3200,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4326,7 +4326,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4453,19 +4453,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "สร้างตารางในฐานข้อมูลนี้ %s" msgstr "สร้างตารางในฐานข้อมูลนี้ %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "สร้างตารางในฐานข้อมูลนี้ %s" msgstr "สร้างตารางในฐานข้อมูลนี้ %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4474,6 +4474,14 @@ msgstr "สร้างตารางในฐานข้อมูลนี้
msgid "Export Method:" msgid "Export Method:"
msgstr "ส่งออก" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4597,9 +4605,11 @@ msgstr "\"bzipped\""
msgid "Format:" msgid "Format:"
msgstr "รูปแบบ" msgstr "รูปแบบ"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "ตัวเลือกการแปลง"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4680,6 +4690,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5957,7 +5971,7 @@ msgstr "ไม่มีรายละเอียด"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7754,46 +7768,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "เฉพาะโครงสร้าง"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "เฉพาะโครงสร้าง"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9626,6 +9641,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "เปลี่ยนชื่อตารางเป็น" msgstr "เปลี่ยนชื่อตารางเป็น"
#, fuzzy
#~ msgid "Start"
#~ msgstr "ส."
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

142
po/tr.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-12-01 19:12+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n" "Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
"Language-Team: turkish <tr@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "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." "bulmak için %sbelgeden%s yararlanın."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Dosya okunamadı" msgstr "Dosya okunamadı"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1374,12 +1374,12 @@ msgstr "Saniye"
msgid "Font size" msgid "Font size"
msgstr "Yazı Tipi boyutu" 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." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor." "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 "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1387,27 +1387,27 @@ msgstr ""
"Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini " "Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini "
"aşıyor." "aşıyor."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Gönderilen dosya sadece kısmen gönderildi." msgstr "Gönderilen dosya sadece kısmen gönderildi."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Eksik geçici klasör." msgstr "Eksik geçici klasör."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Dosyayı diske yazma başarısız." msgstr "Dosyayı diske yazma başarısız."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Dosya gönderme uzantısından dolayı durduruldu." 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." msgid "Unknown error in file upload."
msgstr "Dosya göndermede bilinmeyen hata oldu." msgstr "Dosya göndermede bilinmeyen hata oldu."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "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." msgid "JSON encoder is needed for chart tooltips."
msgstr "Çizelge araç ipuçları için JSON kodlayıcısı gerekli." msgstr "Çizelge araç ipuçları için JSON kodlayıcısı gerekli."
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "bir yerde tırnak veya noktalı virgül eksiktir.<br />Eğer boş bir sayfa "
"karşınıza çıkıyorsa, her şey yolunda demektir." "karşınıza çıkıyorsa, her şey yolunda demektir."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s" msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1824,28 +1824,28 @@ msgstr ""
"<tt>$cfg['PmaAbsoluteUri']</tt> talimatı yapılandırma dosyanız içinde " "<tt>$cfg['PmaAbsoluteUri']</tt> talimatı yapılandırma dosyanız içinde "
"AYARLANMAK zorundadır!" "AYARLANMAK zorundadır!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Geçersiz sunucu indeksi: %s" msgstr "Geçersiz sunucu indeksi: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırmanızı gözden " "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırmanızı gözden "
"geçirin." "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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Sunucu" msgstr "Sunucu"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "Yapılandırma içinde geçersiz kimlik denetimi yöntemi ayarı:" 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 #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "%s %s veya sonrasına yükseltmelisiniz." msgstr "%s %s veya sonrasına yükseltmelisiniz."
@@ -2078,11 +2078,11 @@ msgstr "veri"
msgid "structure and data" msgid "structure and data"
msgstr "yapı ve veri" 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" msgid "Quick - display only the minimal options to configure"
msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster" 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" msgid "Custom - display all possible options to configure"
msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster" 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 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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" msgstr "Tablo listesinde görüntülenecek olan en fazla tablo sayısıdır"
#: libraries/config/messages.inc.php:268 #: 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" msgid "Incorrect IP address: %s"
msgstr "Yanlış IP adresi: %s" msgstr "Yanlış IP adresi: %s"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." 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." 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!" "Dışa aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
#: libraries/display_export.lib.php:87 #: 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" msgstr "Veritabanları şu anki sunucu içinde dışa aktarılıyor"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, fuzzy, php-format
msgid "Exporting tables in the database \"%s\"" #| msgid "Exporting tables in the database \"%s\""
msgid "Exporting tables from \"%s\" database"
msgstr "\"%s\" veritabanında tablolar dışa aktarılıyor" msgstr "\"%s\" veritabanında tablolar dışa aktarılıyor"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, fuzzy, php-format
msgid "Exporting rows in the table \"%s\"" #| msgid "Exporting rows in the table \"%s\""
msgid "Exporting rows from \"%s\" table"
msgstr "\"%s\" tablosunda satırlar dışa aktarılıyor" msgstr "\"%s\" tablosunda satırlar dışa aktarılıyor"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "Dışa Aktarma Yöntemi:" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "Veritabanı(ları):" msgstr "Veritabanı(ları):"
@@ -4580,8 +4596,10 @@ msgstr "bzip olarak"
msgid "Format:" msgid "Format:"
msgstr "Biçim:" msgstr "Biçim:"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
#| msgid "Format-Specific Options:"
msgid "Format-specific options:"
msgstr "Biçim-Belirli Seçenekler:" msgstr "Biçim-Belirli Seçenekler:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "İlk satırdan başlayarak atlanacak satır sayısı:" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5998,7 +6020,7 @@ msgstr "Açıklama yok"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Slave yapılandırması" 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" msgid "Change or reconfigure master server"
msgstr "Master sunucuyu değiştir veya yeniden yapılandır" msgstr "Master sunucuyu değiştir veya yeniden yapılandır"
@@ -7830,45 +7852,51 @@ msgstr "Tam durdur"
msgid "Reset slave" msgid "Reset slave"
msgstr "Slave'i sıfırla" msgstr "Slave'i sıfırla"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Sadece SQL İşlemi %s" msgstr "Sadece SQL İşlemi %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Başlat" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Sadece SQL İşlemi %s"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Durdur" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Sadece G/Ç İşlemi %s" 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:" msgid "Error management:"
msgstr "Hata yönetimi:" msgstr "Hata yönetimi:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "Hataları atlamak master ve slave'i eşitlenmemeye sürükleyebilir!" msgstr "Hataları atlamak master ve slave'i eşitlenmemeye sürükleyebilir!"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Şu anki hatayı atla" msgstr "Şu anki hatayı atla"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "İleri atla" msgstr "İleri atla"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "hata." msgstr "hata."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "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" msgid "Rename view to"
msgstr "Görünümü yeniden şuna adlandır" msgstr "Görünümü yeniden şuna adlandır"
#~ msgid "Start"
#~ msgstr "Başlat"
#~ msgid "Stop"
#~ msgstr "Durdur"
#~ msgid "Display table filter" #~ msgid "Display table filter"
#~ msgstr "Tablo süzgeci göster" #~ msgstr "Tablo süzgeci göster"

148
po/tt.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: tatarish <tt@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -865,14 +865,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Birem uqıp bulmadı" msgstr "Birem uqıp bulmadı"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1474,37 +1474,37 @@ msgstr "sekund sayın"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1896,7 +1896,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 " "semicolon is missing somewhere.<br />If you receive a blank page, everything "
"is fine." "is fine."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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\"" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1926,27 +1926,27 @@ msgstr ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "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" msgid "structure and data"
msgstr "Tözeleşen dä, eçtälegen dä" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3231,7 +3231,7 @@ msgstr ""
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "The number of tables that are open." #| 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ı." msgstr "Açıq toruçı tüşämä sanı."
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4366,7 +4366,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4497,19 +4497,19 @@ msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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." msgstr "Allows locking tables for the current thread."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "%s biremlegendä yaña tüşämä yaratu"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "%s biremlegendä yaña tüşämä yaratu"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4518,6 +4518,15 @@ msgstr "%s biremlegendä yaña tüşämä yaratu"
msgid "Export Method:" msgid "Export Method:"
msgstr "Çığaru ısulı" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4642,9 +4651,11 @@ msgstr "\"bziple\""
msgid "Format:" msgid "Format:"
msgstr "Tözeleş" msgstr "Tözeleş"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformation options"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4730,6 +4741,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Baştan ütep kitäse yazma sanı" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6029,7 +6044,7 @@ msgstr "Açıqlamasız"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7907,46 +7922,47 @@ msgstr "Tulımäten"
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Tözeleşen genä"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Tözeleşen genä"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9803,6 +9819,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "Tüşämä adın üzgärtü" msgstr "Tüşämä adın üzgärtü"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Şmb"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

142
po/ug.po
View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: <gheni@yahoo.cn>\n" "Last-Translator: <gheni@yahoo.cn>\n"
"Language-Team: Uyghur <ug@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -843,14 +843,14 @@ msgstr ""
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
"چارىسىنى كۆرۈڭ." "چارىسىنى كۆرۈڭ."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "ھۆججەتنى ئوقۇيالمىدى" msgstr "ھۆججەتنى ئوقۇيالمىدى"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1401,39 +1401,39 @@ msgstr "سېكنۇت"
msgid "Font size" msgid "Font size"
msgstr "خەتنىڭ چوڭ-كىچىكلىكى" msgstr "خەتنىڭ چوڭ-كىچىكلىكى"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن " "سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن "
"ئېشىپ كەتتى." "ئېشىپ كەتتى."
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى." msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى."
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى." msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى." msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ." msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1817,7 +1817,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1832,37 +1832,37 @@ msgstr ""
"چىكىتلىك بەش لەردىن خاتالىق كۆرۈلىدۇ.<br /> ئەگەر سىز بىر ئاق بەت كۆرسىڭىز " "چىكىتلىك بەش لەردىن خاتالىق كۆرۈلىدۇ.<br /> ئەگەر سىز بىر ئاق بەت كۆرسىڭىز "
"مەسىلە يوقلىقىنى بىلدۈرىدۇ." "مەسىلە يوقلىقىنى بىلدۈرىدۇ."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr " <tt>$cfg['PmaAbsoluteUri']</tt> نى تەڭشەڭ !تەڭشەك ھۆججىتى ئىچىدىكى" msgstr " <tt>$cfg['PmaAbsoluteUri']</tt> نى تەڭشەڭ !تەڭشەك ھۆججىتى ئىچىدىكى"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "مۇلازىمىتېر" msgstr "مۇلازىمىتېر"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:" msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ."
@@ -2098,11 +2098,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "تۈزۈلىشى ۋە ئۇچۇر" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3094,7 +3094,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4203,7 +4203,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىنى تەكشۈرۈپ چىقىڭ." msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىنى تەكشۈرۈپ چىقىڭ."
@@ -4328,19 +4328,21 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #, fuzzy
msgstr "" #| msgid "Cannot log in to the MySQL server"
msgid "Exporting databases from the current server"
msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "ساندان %s غا جەدىۋەل قۇرۇش" msgstr "ساندان %s غا جەدىۋەل قۇرۇش"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "ساندان %s غا جەدىۋەل قۇرۇش" msgstr "ساندان %s غا جەدىۋەل قۇرۇش"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4349,6 +4351,14 @@ msgstr "ساندان %s غا جەدىۋەل قۇرۇش"
msgid "Export Method:" msgid "Export Method:"
msgstr "چىقىرىش" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4473,8 +4483,8 @@ msgstr "bzip پىرىسلاش"
msgid "Format:" msgid "Format:"
msgstr "فورماتلاش" msgstr "فورماتلاش"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" msgid "Format-specific options:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5817,7 +5831,7 @@ msgstr ""
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7539,45 +7553,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "تۈزىلىشىنىلا"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "تۈزىلىشىنىلا"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

142
po/uk.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-27 23:41+0200\n"
"Last-Translator: Olexiy Zagorskyi <zalex_ua@i.ua>\n" "Last-Translator: Olexiy Zagorskyi <zalex_ua@i.ua>\n"
"Language-Team: ukrainian <uk@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -849,14 +849,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "" msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Неможливо прочитати файл" msgstr "Неможливо прочитати файл"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1459,37 +1459,37 @@ msgstr "за секунду"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1876,7 +1876,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1893,12 +1893,12 @@ msgstr ""
"просто бракує лапок чи двокрапки. <br />Якщо Ви отримаєте порожню сторінку, " "просто бракує лапок чи двокрапки. <br />Якщо Ви отримаєте порожню сторінку, "
"- значить все в порядку." "- значить все в порядку."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1906,26 +1906,26 @@ msgstr ""
"Змінна <tt>$cfg['PmaAbsoluteUri']</tt> ПОВИННА бути встановлена у Вашому " "Змінна <tt>$cfg['PmaAbsoluteUri']</tt> ПОВИННА бути встановлена у Вашому "
"конфіґураційному файлі!" "конфіґураційному файлі!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Сервер" msgstr "Сервер"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2161,11 +2161,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Структуру і дані" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3181,7 +3181,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4294,7 +4294,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4421,19 +4421,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "Дозволити блокування таблиць для біжучих потоків." msgstr "Дозволити блокування таблиць для біжучих потоків."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "Створити нову таблицю в БД %s" msgstr "Створити нову таблицю в БД %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "Створити нову таблицю в БД %s" msgstr "Створити нову таблицю в БД %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4442,6 +4442,14 @@ msgstr "Створити нову таблицю в БД %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "Експорт" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4566,9 +4574,11 @@ msgstr "запакувати в \"bzip\""
msgid "Format:" msgid "Format:"
msgstr "Формат" msgstr "Формат"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Опції перетворення"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:" msgid "Encoding Conversion:"
@@ -4651,6 +4661,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5917,7 +5931,7 @@ msgstr "без опису"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7756,45 +7770,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "Лише структуру"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "Лише структуру"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

142
po/ur.po
View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-05-14 12:35+0200\n"
"Last-Translator: <monymirza@gmail.com>\n" "Last-Translator: <monymirza@gmail.com>\n"
"Language-Team: Urdu <ur@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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%" "You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit." "s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "فائل پڑھی نہیں جا سکتی" msgstr "فائل پڑھی نہیں جا سکتی"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1415,37 +1415,37 @@ msgstr ""
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1824,7 +1824,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1834,37 +1834,37 @@ msgid ""
"is fine." "is fine."
msgstr "" msgstr ""
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "" msgstr ""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "" msgstr ""
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr ""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "" msgstr ""
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "" msgstr ""
@@ -2099,11 +2099,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "سٹرکچر اور ڈیٹا" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3088,7 +3088,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4187,7 +4187,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4310,19 +4310,21 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #, fuzzy
msgstr "" #| msgid "No tables found in database."
msgid "Exporting databases from the current server"
msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "No tables found in database." #| msgid "No tables found in database."
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا" msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "No tables found in database." #| msgid "No tables found in database."
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا" msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4331,6 +4333,14 @@ msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا"
msgid "Export Method:" msgid "Export Method:"
msgstr "برآمد" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Database" #| msgid "Database"
@@ -4436,8 +4446,8 @@ msgstr ""
msgid "Format:" msgid "Format:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" msgid "Format-specific options:"
msgstr "" msgstr ""
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5750,7 +5764,7 @@ msgstr ""
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7468,45 +7482,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "سٹرکچر صرف"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "سٹرکچر صرف"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "

134
po/uz.po
View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: uzbek_cyrillic <uz@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -865,14 +865,14 @@ msgstr ""
"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" "Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
"sдокументацияда%s келтирилган." "sдокументацияда%s келтирилган."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Файлни ўқиб бўлмади!!" msgstr "Файлни ўқиб бўлмади!!"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1501,13 +1501,13 @@ msgstr "секундига"
msgid "Font size" msgid "Font size"
msgstr "Шрифт ўлчами" msgstr "Шрифт ўлчами"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган " "Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган "
"\"upload_max_filesize\" директиваси қийматидан катта!" "\"upload_max_filesize\" директиваси қийматидан катта!"
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1515,27 +1515,27 @@ msgstr ""
"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" " "Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" "
"директиваси қийматидан катта!" "директиваси қийматидан катта!"
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Юкланаётган файл фақатгина қисман юкланди." msgstr "Юкланаётган файл фақатгина қисман юкланди."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади." msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Файлни дискка ёзишдахатолик юз берди." msgstr "Файлни дискка ёзишдахатолик юз берди."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди." msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1938,7 +1938,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1953,13 +1953,13 @@ msgstr ""
"ни кўриб чиқинг. Кўп ҳолларда қўштирноқ ёки нуқта-вергул қолдириб кетилган " "ни кўриб чиқинг. Кўп ҳолларда қўштирноқ ёки нуқта-вергул қолдириб кетилган "
"бўлади.<br />Агар бўм-бўш саҳифа кўрсатилса, демак, ҳаммаси жойида." "бўлади.<br />Агар бўм-бўш саҳифа кўрсатилса, демак, ҳаммаси жойида."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr " \"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." msgstr " \"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади."
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1967,30 +1967,30 @@ msgstr ""
"<tt>$cfg[\"PmaAbsoluteUrl\"]</tt> директиваси конфигурацион файлда созланиши " "<tt>$cfg[\"PmaAbsoluteUrl\"]</tt> директиваси конфигурацион файлда созланиши "
"ШАРТ!" "ШАРТ!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Сервер рақами нотўғри: \"%s\"" msgstr "Сервер рақами нотўғри: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
" %1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " " %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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Сервер" msgstr "Сервер"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
"phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr " \"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." msgstr " \"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур."
@@ -2234,11 +2234,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Тузилиши ва маълумотлари" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3331,7 +3331,7 @@ msgstr "Сервер танловини кўрсатиш"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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 "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4616,7 +4616,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Нотўғри IP-адрес: \"%s\"" msgstr "Нотўғри IP-адрес: \"%s\""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4751,19 +4751,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш" msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш" msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4772,6 +4772,16 @@ msgstr "\"%s\" маълумотлар базасида янги жадвал т
msgid "Export Method:" msgid "Export Method:"
msgstr "Эскпорт тури" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4905,9 +4915,11 @@ msgstr "bzip ёрдамида сиқилган"
msgid "Format:" msgid "Format:"
msgstr "Формат" msgstr "Формат"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Ўгиришлар параметрлари"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -5011,6 +5023,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "Файл бошидаги эътибор бериш керак бўлмаган қаторлар (сўровлар) сони" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6363,7 +6379,7 @@ msgstr "тавсиф мавжуд эмас"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Тобе сервер конфигурацияси" 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" msgid "Change or reconfigure master server"
msgstr "Бош серверни ўзгартириш ёки қайта конфигурация қилиш" msgstr "Бош серверни ўзгартириш ёки қайта конфигурация қилиш"
@@ -8338,29 +8354,35 @@ msgstr "Барчасини тўхтатиш"
msgid "Reset slave" msgid "Reset slave"
msgstr "Тобе серверни тиклаш" msgstr "Тобе серверни тиклаш"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Фақат %s SQL кириш/чиқиш оқимини" msgstr "Фақат %s SQL кириш/чиқиш оқимини"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Бошлаш" #| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Фақат %s SQL кириш/чиқиш оқимини"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Тўхтатиш" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Фақат %s қириш/чиқиш оқимини" 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:" msgid "Error management:"
msgstr "Хатоликларни бошқариш:" msgstr "Хатоликларни бошқариш:"
#: server_replication.php:332 #: server_replication.php:340
#, fuzzy #, fuzzy
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!" #| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors 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" msgid "Skip current error"
msgstr "Жорий хатоликларни ташлаб кетиш" msgstr "Жорий хатоликларни ташлаб кетиш"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Кейингисини ташлаб кетиш" msgstr "Кейингисини ташлаб кетиш"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr " хатоликлар." msgstr " хатоликлар."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10481,6 +10503,12 @@ msgstr "Ном кўриниши"
msgid "Rename view to" msgid "Rename view to"
msgstr "Кўриниш номини ўзгартириш" msgstr "Кўриниш номини ўзгартириш"
#~ msgid "Start"
#~ msgstr "Бошлаш"
#~ msgid "Stop"
#~ msgstr "Тўхтатиш"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n" "Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: 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 " "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan." "usullari %sdokumentatsiyada%s keltirilgan."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "Faylni oqib bolmadi!!" msgstr "Faylni oqib bolmadi!!"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1507,13 +1507,13 @@ msgstr "sekundiga"
msgid "Font size" msgid "Font size"
msgstr "Shrift olchami" msgstr "Shrift olchami"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
"Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) korsatilgan " "Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) korsatilgan "
"\"upload_max_filesize\" direktivasi qiymatidan katta!" "\"upload_max_filesize\" direktivasi qiymatidan katta!"
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
@@ -1521,27 +1521,27 @@ msgstr ""
"Yuklanayotgan fayl hajmi HTML formada korsatilgan \"MAX_FILE_SIZE\" " "Yuklanayotgan fayl hajmi HTML formada korsatilgan \"MAX_FILE_SIZE\" "
"direktivasi qiymatidan katta!" "direktivasi qiymatidan katta!"
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi." msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi."
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi." msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi."
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "Faylni diskka yozishdaxatolik yuz berdi." msgstr "Faylni diskka yozishdaxatolik yuz berdi."
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "Faylning yuklanishi uning kengaytmasi sabali toxtatildi." msgstr "Faylning yuklanishi uning kengaytmasi sabali toxtatildi."
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi."
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1944,7 +1944,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "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 boladi.<br />Agar bom-bosh sahifa " "nuqta-vergul qoldirib ketilgan boladi.<br />Agar bom-bosh sahifa "
"korsatilsa, demak, hammasi joyida." "korsatilsa, demak, hammasi joyida."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
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 bolmadi." msgstr " \"%1$s\" faylidan andoza konfiguratsiyani yuklab bolmadi."
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
@@ -1974,31 +1974,31 @@ msgstr ""
"<tt>$cfg[\"PmaAbsoluteUrl\"]</tt> direktivasi konfiguratsion faylda " "<tt>$cfg[\"PmaAbsoluteUrl\"]</tt> direktivasi konfiguratsion faylda "
"sozlanishi SHART!" "sozlanishi SHART!"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "Server raqami notogri: \"%s\"" msgstr "Server raqami notogri: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
" %1$s serveri uchun notogri xost nomi korsatilgan. phpMyAdmin " " %1$s serveri uchun notogri xost nomi korsatilgan. phpMyAdmin "
"konfiguratsion faylida belgilangan sozlashlarni togirlang." "konfiguratsion faylida belgilangan sozlashlarni togirlang."
#: 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "Server" msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr ""
"phpMyAdmin konfiguratsion faylida notogri autentifikatsiya usuli " "phpMyAdmin konfiguratsion faylida notogri autentifikatsiya usuli "
"belgilangan:" "belgilangan:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr " \"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." msgstr " \"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur."
@@ -2242,11 +2242,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "Tuzilishi va ma`lumotlari" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3341,7 +3341,7 @@ msgstr "Server tanlovini korsatish"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy #, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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 royxatida korsatiladigan jadvallarning maksimal soni" msgstr "Jadvallar royxatida korsatiladigan jadvallarning maksimal soni"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4637,7 +4637,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "Notogri IP-adres: \"%s\"" msgstr "Notogri IP-adres: \"%s\""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4772,19 +4772,19 @@ msgstr ""
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| 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" msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| 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" msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4793,6 +4793,16 @@ msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish"
msgid "Export Method:" msgid "Export Method:"
msgstr "Eskport turi" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4926,9 +4936,11 @@ msgstr "bzip yordamida siqilgan"
msgid "Format:" msgid "Format:"
msgstr "Format" msgstr "Format"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Ogirishlar parametrlari"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -5033,6 +5045,10 @@ msgid "Number of rows to skip, starting from the first row:"
msgstr "" msgstr ""
"Fayl boshidagi e`tibor berish kerak bolmagan qatorlar (sorovlar) soni" "Fayl boshidagi e`tibor berish kerak bolmagan qatorlar (sorovlar) 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -6393,7 +6409,7 @@ msgstr "tavsif mavjud emas"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "Tobе sеrvеr konfiguratsiyasi" 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" msgid "Change or reconfigure master server"
msgstr "Bosh sеrvеrni ozgartirish yoki qayta konfiguratsiya qilish" msgstr "Bosh sеrvеrni ozgartirish yoki qayta konfiguratsiya qilish"
@@ -8386,29 +8402,35 @@ msgstr "Barchasini toxtatish"
msgid "Reset slave" msgid "Reset slave"
msgstr "Tobе sеrvеrni tiklash" msgstr "Tobе sеrvеrni tiklash"
#: server_replication.php:325 #: server_replication.php:326
#, php-format #, fuzzy
msgid "SQL Thread %s only" #| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Faqat %s SQL kirish/chiqish oqimini" msgstr "Faqat %s SQL kirish/chiqish oqimini"
#: server_replication.php:325 server_replication.php:326 #: server_replication.php:328
msgid "Start" #, fuzzy
msgstr "Boshlash" #| 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 #: server_replication.php:331
msgid "Stop" #, fuzzy
msgstr "Toxtatish" #| msgid "IO Thread %s only"
msgid "Start IO Thread only"
#: server_replication.php:326
#, php-format
msgid "IO Thread %s only"
msgstr "Faqat %s qirish/chiqish oqimini" 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:" msgid "Error management:"
msgstr "Xatoliklarni boshqarish:" msgstr "Xatoliklarni boshqarish:"
#: server_replication.php:332 #: server_replication.php:340
#, fuzzy #, fuzzy
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!" #| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors 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 tola " "Xatolik(lar)ni tashlab kеtish bosh va tobе sеrvеrlarning tola "
"sinxronizatsiya qilinmaganligiga olib kеlishi mumkin!" "sinxronizatsiya qilinmaganligiga olib kеlishi mumkin!"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "Joriy xatoliklarni tashlab kеtish" msgstr "Joriy xatoliklarni tashlab kеtish"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "Kеyingisini tashlab kеtish" msgstr "Kеyingisini tashlab kеtish"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr " xatoliklar." msgstr " xatoliklar."
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -10547,6 +10569,12 @@ msgstr "Nom korinishi"
msgid "Rename view to" msgid "Rename view to"
msgstr "Korinish nomini ozgartirish" msgstr "Korinish nomini ozgartirish"
#~ msgid "Start"
#~ msgstr "Boshlash"
#~ msgid "Stop"
#~ msgstr "Toxtatish"
#, fuzzy #, fuzzy
#~| msgid "Display databases in a tree" #~| msgid "Display databases in a tree"
#~ msgid "Display table filter" #~ msgid "Display table filter"

View File

@@ -3,14 +3,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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-22 09:26+0200\n" "PO-Revision-Date: 2010-12-08 05:44+0200\n"
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n" "Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN@li.org>\n" "Language-Team: chinese_simplified <zh_CN@li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -406,11 +406,11 @@ msgstr "您最少要选择显示一列"
#: db_qbe.php:182 #: db_qbe.php:182
msgid "Switch to" msgid "Switch to"
msgstr "" msgstr "切换到"
#: db_qbe.php:186 #: db_qbe.php:186
msgid "visual builder" msgid "visual builder"
msgstr "" msgstr "可视化查询生成器"
#: db_qbe.php:219 libraries/db_structure.lib.php:95 #: db_qbe.php:219 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:860 #: libraries/display_tbl.lib.php:860
@@ -541,10 +541,10 @@ msgid "Delete"
msgstr "删除" msgstr "删除"
#: db_search.php:260 #: db_search.php:260
#, fuzzy, php-format #, php-format
#| msgid "Delete tracking data for this table" #| msgid "Delete tracking data for this table"
msgid "Delete the matches for the %s table?" msgid "Delete the matches for the %s table?"
msgstr "删除追踪数据" msgstr "删除 %s 表中所有匹配的记录?"
#: db_search.php:273 #: db_search.php:273
#, php-format #, php-format
@@ -830,14 +830,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "无法读取文件" msgstr "无法读取文件"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1090,7 +1090,7 @@ msgstr "选择要显示的字段"
#: js/messages.php:98 #: js/messages.php:98
msgid "Add an option for column " msgid "Add an option for column "
msgstr "" msgstr "给字段添加选项 "
#: js/messages.php:101 #: js/messages.php:101
msgid "Generate password" msgid "Generate password"
@@ -1359,37 +1359,37 @@ msgstr "秒"
msgid "Font size" msgid "Font size"
msgstr "字号" msgstr "字号"
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。" msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。"
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。" msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。"
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "仅上传了文件的一部分内容。" msgstr "仅上传了文件的一部分内容。"
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "找不到临时文件夹。" msgstr "找不到临时文件夹。"
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "将文件写入磁盘失败。" msgstr "将文件写入磁盘失败。"
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "因扩展而停止文件上传。" msgstr "因扩展而停止文件上传。"
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "上传文件时发生未知错误。" msgstr "上传文件时发生未知错误。"
#: libraries/File.class.php:624 #: libraries/File.class.php:559
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]" "html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -1768,7 +1768,7 @@ msgstr "绘制图表需要 GD 扩展。"
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "绘制图表气泡提示需要 JSON 扩展。" msgstr "绘制图表气泡提示需要 JSON 扩展。"
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1782,37 +1782,37 @@ msgstr ""
"常的错误都是因为某处漏了引号或分号。<br />如果您看到的是一个空白页,则代表没" "常的错误都是因为某处漏了引号或分号。<br />如果您看到的是一个空白页,则代表没"
"有任何问题。" "有任何问题。"
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, php-format #, php-format
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "无法加载默认配置: %1$s" msgstr "无法加载默认配置: %1$s"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr "必须在您的配置文件中设置 <tt>$cfg['PmaAbsoluteUri']</tt> " msgstr "必须在您的配置文件中设置 <tt>$cfg['PmaAbsoluteUri']</tt> "
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "无效的服务器索引: %s" msgstr "无效的服务器索引: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "无效的主机名 %1$s请检查配置文件。" 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "服务器" msgstr "服务器"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "配置文件中设置的认证方式无效:" msgstr "配置文件中设置的认证方式无效:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "您应升级到 %s %s 或更高版本。" msgstr "您应升级到 %s %s 或更高版本。"
@@ -2045,11 +2045,11 @@ msgstr "数据"
msgid "structure and data" msgid "structure and data"
msgstr "结构和数据" 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" msgid "Quick - display only the minimal options to configure"
msgstr "快速 - 仅显示必须的设置项" 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" msgid "Custom - display all possible options to configure"
msgstr "自定义 - 显示所有可用的设置项" msgstr "自定义 - 显示所有可用的设置项"
@@ -2956,7 +2956,7 @@ msgstr "部分导入:允许中断"
#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245
#: libraries/import/csv.php:26 libraries/import/ldi.php:39 #: libraries/import/csv.php:26 libraries/import/ldi.php:39
msgid "Do not abort on INSERT error" msgid "Do not abort on INSERT error"
msgstr "" msgstr "不在发生插入错误时中断"
#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247
#: libraries/import/csv.php:25 libraries/import/ldi.php:38 #: libraries/import/csv.php:25 libraries/import/ldi.php:38
@@ -3040,10 +3040,9 @@ msgid "Display servers selection"
msgstr "显示服务器选择" msgstr "显示服务器选择"
#: libraries/config/messages.inc.php:267 #: libraries/config/messages.inc.php:267
#, fuzzy
#| msgid "Maximum number of tables displayed in table list" #| 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 "在数据表列表中最多显示的数据表数" msgstr "显示快速搜索框的最少数据表数"
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels"
@@ -4184,7 +4183,7 @@ msgstr "使用 PMA 数据时控制用户的密码不能为空"
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "%s 是一个错误的 IP 地址" msgstr "%s 是一个错误的 IP 地址"
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "缺少 %s 扩展。请检查 PHP 配置。" msgstr "缺少 %s 扩展。请检查 PHP 配置。"
@@ -4308,23 +4307,36 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "无法加载导出插件,请检查安装!" msgstr "无法加载导出插件,请检查安装!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
msgid "Exporting databases in the current server" #| msgid "Exporting databases in the current server"
msgstr "导出当前服务器中的数据库" msgid "Exporting databases from the current server"
msgstr "正在从当前服务器中导出数据库"
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, php-format #, php-format
msgid "Exporting tables in the database \"%s\"" #| msgid "Exporting tables in the database \"%s\""
msgstr "导出数据库“%s”中的数据表" msgid "Exporting tables from \"%s\" database"
msgstr "正在导出数据库“%s”中的数据表"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, php-format #, php-format
msgid "Exporting rows in the table \"%s\"" #| msgid "Exporting rows in the table \"%s\""
msgstr "导出数据表“%s”中的记录" msgid "Exporting rows from \"%s\" table"
msgstr "正在导出数据表“%s”中的记录"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
msgid "Export Method:" msgid "Export Method:"
msgstr "导出方式" 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 #: libraries/display_export.lib.php:137
msgid "Database(s):" msgid "Database(s):"
msgstr "数据库:" msgstr "数据库:"
@@ -4428,8 +4440,9 @@ msgstr "bzip 压缩"
msgid "Format:" msgid "Format:"
msgstr "格式:" msgstr "格式:"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #| msgid "Format-Specific Options:"
msgid "Format-specific options:"
msgstr "格式特定选项:" msgstr "格式特定选项:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: 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:" msgid "Number of rows to skip, starting from the first row:"
msgstr "从首行起要跳过的行数:" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -4565,16 +4582,14 @@ msgid "Options"
msgstr "选项" msgstr "选项"
#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 #: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568
#, fuzzy
#| msgid "Partial Texts" #| msgid "Partial Texts"
msgid "Partial texts" msgid "Partial texts"
msgstr "部分文字" msgstr "部分内容"
#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 #: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572
#, fuzzy
#| msgid "Full Texts" #| msgid "Full Texts"
msgid "Full texts" msgid "Full texts"
msgstr "完整文字" msgstr "完整内容"
#: libraries/display_tbl.lib.php:585 #: libraries/display_tbl.lib.php:585
msgid "Relational key" msgid "Relational key"
@@ -5781,7 +5796,7 @@ msgstr "无说明"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "从服务器配置" 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" msgid "Change or reconfigure master server"
msgstr "修改或重新配置主服务器" msgstr "修改或重新配置主服务器"
@@ -6012,7 +6027,7 @@ msgstr "当前页所引用的表不存在了。您是否想要删除这些引用
#: libraries/schema/User_Schema.class.php:469 #: libraries/schema/User_Schema.class.php:469
msgid "Toggle scratchboard" msgid "Toggle scratchboard"
msgstr "切换板" msgstr "切换草稿板"
#. l10n: Text direction, use either ltr or rtl #. l10n: Text direction, use either ltr or rtl
#: libraries/select_lang.lib.php:482 #: libraries/select_lang.lib.php:482
@@ -6554,7 +6569,6 @@ msgstr ""
"phpMyAdmin 中设置的时间要更短。" "phpMyAdmin 中设置的时间要更短。"
#: main.php:279 #: main.php:279
#, fuzzy
#| msgid "" #| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that " #| "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, " "Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin." "because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr "" msgstr ""
"您的 PHP 配置参数 [a@http://php.net/manual/en/session.configuration.php#ini." "phpMyAdmin 中所设置的登录 cookie 存储小于 cookie 有效期,因此您的登录过期时间将会比您在 phpMyAdmin "
"session.gc-maxlifetime@]session.gc_maxlifetime (外链,英文)[/a] 短于您在 " "中设置的时间要更短。"
"phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 "
"phpMyAdmin 中设置的时间要更短。"
#: main.php:287 #: main.php:287
msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
@@ -6628,10 +6640,9 @@ msgid "Filter"
msgstr "快速搜索" msgstr "快速搜索"
#: navigation.php:292 #: navigation.php:292
#, fuzzy
#| msgid "Alter table order by" #| msgid "Alter table order by"
msgid "filter tables by name" msgid "filter tables by name"
msgstr "更改表的排序,根据" msgstr "请输入部分或完整的表名"
#: navigation.php:293 setup/frames/index.inc.php:219 #: navigation.php:293 setup/frames/index.inc.php:219
msgid "Clear" msgid "Clear"
@@ -6695,10 +6706,9 @@ msgid "Import/Export coordinates for PDF schema"
msgstr "为 PDF 大纲导入/导出坐标" msgstr "为 PDF 大纲导入/导出坐标"
#: pmd_general.php:122 #: pmd_general.php:122
#, fuzzy
#| msgid "Submit Query" #| msgid "Submit Query"
msgid "Build Query" msgid "Build Query"
msgstr "提交查询" msgstr "生成查询"
#: pmd_general.php:127 #: pmd_general.php:127
msgid "Move Menu" msgid "Move Menu"
@@ -6721,54 +6731,47 @@ msgid "Delete relation"
msgstr "删除关系" msgstr "删除关系"
#: pmd_general.php:462 pmd_general.php:521 #: pmd_general.php:462 pmd_general.php:521
#, fuzzy
#| msgid "Relation deleted" #| msgid "Relation deleted"
msgid "Relation operator" msgid "Relation operator"
msgstr "已删除关系" msgstr "关系运算符"
#: pmd_general.php:472 pmd_general.php:531 pmd_general.php:654 #: pmd_general.php:472 pmd_general.php:531 pmd_general.php:654
#: pmd_general.php:771 #: pmd_general.php:771
#, fuzzy
#| msgid "Export" #| msgid "Export"
msgid "Except" msgid "Except"
msgstr "导出" msgstr "EXCEPT"
#: pmd_general.php:478 pmd_general.php:537 pmd_general.php:660 #: pmd_general.php:478 pmd_general.php:537 pmd_general.php:660
#: pmd_general.php:777 #: pmd_general.php:777
#, fuzzy
#| msgid "in query" #| msgid "in query"
msgid "subquery" msgid "subquery"
msgstr "查询" msgstr "查询"
#: pmd_general.php:482 pmd_general.php:578 #: pmd_general.php:482 pmd_general.php:578
#, fuzzy
#| msgid "Rename view to" #| msgid "Rename view to"
msgid "Rename to" msgid "Rename to"
msgstr "将视图改名为" msgstr "改名为"
#: pmd_general.php:484 pmd_general.php:583 #: pmd_general.php:484 pmd_general.php:583
#, fuzzy
#| msgid "User name" #| msgid "User name"
msgid "New name" msgid "New name"
msgstr "用户名" msgstr "新名称"
#: pmd_general.php:487 pmd_general.php:702 #: pmd_general.php:487 pmd_general.php:702
#, fuzzy
#| msgid "Create" #| msgid "Create"
msgid "Aggregate" msgid "Aggregate"
msgstr "创建" msgstr "聚合"
#: pmd_general.php:489 pmd_general.php:509 pmd_general.php:631 #: pmd_general.php:489 pmd_general.php:509 pmd_general.php:631
#: pmd_general.php:644 pmd_general.php:707 pmd_general.php:761 #: pmd_general.php:644 pmd_general.php:707 pmd_general.php:761
#: tbl_select.php:135 #: tbl_select.php:135
msgid "Operator" msgid "Operator"
msgstr "操作符" msgstr "运算符"
#: pmd_general.php:812 #: pmd_general.php:812
#, fuzzy
#| msgid "Table options" #| msgid "Table options"
msgid "Active options" msgid "Active options"
msgstr "选项" msgstr "当前选项"
#: pmd_help.php:26 #: pmd_help.php:26
msgid "To select relation, click :" msgid "To select relation, click :"
@@ -7545,7 +7548,7 @@ msgstr "控制从服务器:"
#: server_replication.php:323 #: server_replication.php:323
msgid "Full start" msgid "Full start"
msgstr "全部开始" msgstr "全部启动"
#: server_replication.php:323 #: server_replication.php:323
msgid "Full stop" msgid "Full stop"
@@ -7555,45 +7558,47 @@ msgstr "全部停止"
msgid "Reset slave" msgid "Reset slave"
msgstr "重置从服务器" 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 #: server_replication.php:326
#, php-format #| msgid "SQL Thread %s only"
msgid "IO Thread %s only" msgid "Start SQL Thread only"
msgstr "仅%s IO 线程" 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:" msgid "Error management:"
msgstr "错误管理:" msgstr "错误管理:"
#: server_replication.php:332 #: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "忽略错误可能导致主从服务器间不同步!" msgstr "忽略错误可能导致主从服务器间不同步!"
#: server_replication.php:334 #: server_replication.php:342
msgid "Skip current error" msgid "Skip current error"
msgstr "忽略当前错误" msgstr "忽略当前错误"
#: server_replication.php:335 #: server_replication.php:343
msgid "Skip next" msgid "Skip next"
msgstr "忽略下" msgstr "忽略下"
#: server_replication.php:338 #: server_replication.php:346
msgid "errors." msgid "errors."
msgstr "个错误。" msgstr "个错误。"
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -8353,20 +8358,18 @@ msgid "Query type"
msgstr "查询方式" msgstr "查询方式"
#: server_status.php:709 server_status.php:710 #: server_status.php:709 server_status.php:710
#, fuzzy
#| msgid "Show query box" #| msgid "Show query box"
msgid "Show query chart" msgid "Show query chart"
msgstr "显示查询" msgstr "显示查询图表"
#: server_status.php:714 server_status.php:715 #: server_status.php:714 server_status.php:715
#, fuzzy
#| msgid "Hide query box" #| msgid "Hide query box"
msgid "Hide query chart" msgid "Hide query chart"
msgstr "隐藏查询" msgstr "隐藏查询图表"
#: server_status.php:717 #: server_status.php:717
msgid "Note: Generating the query chart can take a long time." msgid "Note: Generating the query chart can take a long time."
msgstr "" msgstr "注意:生成查询图表可能需要一定的时间。"
#: server_status.php:855 #: server_status.php:855
msgid "Replication status" msgid "Replication status"
@@ -9468,6 +9471,12 @@ msgstr "视图名"
msgid "Rename view to" msgid "Rename view to"
msgstr "将视图改名为" msgstr "将视图改名为"
#~ msgid "Start"
#~ msgstr "开始"
#~ msgid "Stop"
#~ msgstr "停止"
#~ msgid "Display table filter" #~ msgid "Display table filter"
#~ msgstr "显示数据表快速搜索框" #~ msgstr "显示数据表快速搜索框"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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" "PO-Revision-Date: 2010-11-05 14:13+0200\n"
"Last-Translator: <terrytsai123@hotmail.com>\n" "Last-Translator: <terrytsai123@hotmail.com>\n"
"Language-Team: chinese_traditional <zh_TW@li.org>\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 #: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
#: libraries/Theme_Manager.class.php:305 #: libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304 #: 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_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61 #: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267 #: 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_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
#: server_privileges.php:2062 server_privileges.php:2109 #: server_privileges.php:2062 server_privileges.php:2109
#: server_privileges.php:2149 server_replication.php:233 #: 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 #: 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_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563 #: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
@@ -847,14 +847,14 @@ msgid ""
"s for ways to workaround this limit." "s for ways to workaround this limit."
msgstr "你正嘗試上載大容量檔案,請查看此 %s文件%s 如何略過此限制." msgstr "你正嘗試上載大容量檔案,請查看此 %s文件%s 如何略過此限制."
#: import.php:277 import.php:330 libraries/File.class.php:566 #: import.php:277 import.php:330 libraries/File.class.php:501
#: libraries/File.class.php:676 #: libraries/File.class.php:611
msgid "File could not be read" msgid "File could not be read"
msgstr "讀案無法讀取" msgstr "讀案無法讀取"
#: import.php:285 import.php:294 import.php:313 import.php:322 #: 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:681 libraries/File.class.php:689
#: libraries/File.class.php:770 libraries/File.class.php:778 #: libraries/File.class.php:705 libraries/File.class.php:713
#, php-format #, php-format
msgid "" msgid ""
"You attempted to load file with unsupported compression (%s). Either support " "You attempted to load file with unsupported compression (%s). Either support "
@@ -1456,37 +1456,37 @@ msgstr "每秒"
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#: libraries/File.class.php:315 #: libraries/File.class.php:310
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "" msgstr ""
#: libraries/File.class.php:318 #: libraries/File.class.php:313
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form." "the HTML form."
msgstr "" msgstr ""
#: libraries/File.class.php:321 #: libraries/File.class.php:316
msgid "The uploaded file was only partially uploaded." msgid "The uploaded file was only partially uploaded."
msgstr "" msgstr ""
#: libraries/File.class.php:324 #: libraries/File.class.php:319
msgid "Missing a temporary folder." msgid "Missing a temporary folder."
msgstr "" msgstr ""
#: libraries/File.class.php:327 #: libraries/File.class.php:322
msgid "Failed to write file to disk." msgid "Failed to write file to disk."
msgstr "" msgstr ""
#: libraries/File.class.php:330 #: libraries/File.class.php:325
msgid "File upload stopped by extension." msgid "File upload stopped by extension."
msgstr "" msgstr ""
#: libraries/File.class.php:333 #: libraries/File.class.php:328
msgid "Unknown error in file upload." msgid "Unknown error in file upload."
msgstr "" msgstr ""
#: libraries/File.class.php:624 #: libraries/File.class.php:559
#, fuzzy #, fuzzy
msgid "" msgid ""
"Error moving the uploaded file, see [a@./Documentation." "Error moving the uploaded file, see [a@./Documentation."
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr ""
#: libraries/common.inc.php:576 #: libraries/common.inc.php:575
msgid "" msgid ""
"phpMyAdmin was unable to read your configuration file!<br />This might " "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 /" "happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
@@ -1892,39 +1892,39 @@ msgstr ""
"誤都來自某處漏了引號或分別.<br />如果按下連結後出現空白頁, 即代表沒有任何問" "誤都來自某處漏了引號或分別.<br />如果按下連結後出現空白頁, 即代表沒有任何問"
"題." "題."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:586
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "無法讀取預設設定: \"%1$s\"" msgstr "無法讀取預設設定: \"%1$s\""
#: libraries/common.inc.php:592 #: libraries/common.inc.php:591
msgid "" msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your " "The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!" "configuration file!"
msgstr " 必須在設定檔內設定 <tt>$cfg['PmaAbsoluteUri']</tt> !" msgstr " 必須在設定檔內設定 <tt>$cfg['PmaAbsoluteUri']</tt> !"
#: libraries/common.inc.php:622 #: libraries/common.inc.php:621
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Invalid server index: \"%s\"" #| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "伺服器索引錯誤: \"%s\"" msgstr "伺服器索引錯誤: \"%s\""
#: libraries/common.inc.php:629 #: libraries/common.inc.php:628
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "伺服器 %1$s 主機名稱錯誤, 請翻查設定值." 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 #: libraries/header.inc.php:115 main.php:168 test/theme.php:56
msgid "Server" msgid "Server"
msgstr "伺服器" msgstr "伺服器"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:825
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "於設定內設定錯誤認證方式:" msgstr "於設定內設定錯誤認證方式:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:928
#, php-format #, php-format
msgid "You should upgrade to %s %s or later." msgid "You should upgrade to %s %s or later."
msgstr "您應該更新到 %s %s 或之後." msgstr "您應該更新到 %s %s 或之後."
@@ -2165,11 +2165,11 @@ msgstr ""
msgid "structure and data" msgid "structure and data"
msgstr "結構與資料" 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" msgid "Quick - display only the minimal options to configure"
msgstr "" 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" msgid "Custom - display all possible options to configure"
msgstr "" msgstr ""
@@ -3204,7 +3204,7 @@ msgid "Display servers selection"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:267 #: 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 "" msgstr ""
#: libraries/config/messages.inc.php:268 #: libraries/config/messages.inc.php:268
@@ -4336,7 +4336,7 @@ msgstr ""
msgid "Incorrect IP address: %s" msgid "Incorrect IP address: %s"
msgstr "" msgstr ""
#: libraries/core.lib.php:265 #: libraries/core.lib.php:262
#, php-format #, php-format
msgid "The %s extension is missing. Please check your PHP configuration." msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "" msgstr ""
@@ -4466,19 +4466,19 @@ msgstr "無法讀取載入的外掛程式, 請檢查安裝程序!"
#: libraries/display_export.lib.php:87 #: libraries/display_export.lib.php:87
#, fuzzy #, fuzzy
#| msgid "Allows locking tables for the current thread." #| msgid "Allows locking tables for the current thread."
msgid "Exporting databases in the current server" msgid "Exporting databases from the current server"
msgstr "容許鎖上現時連線之資料表." msgstr "容許鎖上現時連線之資料表."
#: libraries/display_export.lib.php:89 #: libraries/display_export.lib.php:89
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting tables in the database \"%s\"" msgid "Exporting tables from \"%s\" database"
msgstr "建立新資料表於資料庫 %s" msgstr "建立新資料表於資料庫 %s"
#: libraries/display_export.lib.php:91 #: libraries/display_export.lib.php:91
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "Create table on database %s" #| msgid "Create table on database %s"
msgid "Exporting rows in the table \"%s\"" msgid "Exporting rows from \"%s\" table"
msgstr "建立新資料表於資料庫 %s" msgstr "建立新資料表於資料庫 %s"
#: libraries/display_export.lib.php:97 #: libraries/display_export.lib.php:97
@@ -4487,6 +4487,14 @@ msgstr "建立新資料表於資料庫 %s"
msgid "Export Method:" msgid "Export Method:"
msgstr "輸出方式" 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 #: libraries/display_export.lib.php:137
#, fuzzy #, fuzzy
#| msgid "Databases" #| msgid "Databases"
@@ -4611,9 +4619,11 @@ msgstr "\"bzipped\""
msgid "Format:" msgid "Format:"
msgstr "格式" msgstr "格式"
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250 #: libraries/display_export.lib.php:336
msgid "Format-Specific Options:" #, fuzzy
msgstr "" #| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "轉換方式選項"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
#, fuzzy #, fuzzy
@@ -4699,6 +4709,10 @@ msgstr ""
msgid "Number of rows to skip, starting from the first row:" msgid "Number of rows to skip, starting from the first row:"
msgstr "開始時略過多少行記錄 (語法)" 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:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
msgid "Language" msgid "Language"
@@ -5993,7 +6007,7 @@ msgstr "沒有說明"
msgid "Slave configuration" msgid "Slave configuration"
msgstr "" 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" msgid "Change or reconfigure master server"
msgstr "" msgstr ""
@@ -7828,46 +7842,47 @@ msgstr ""
msgid "Reset slave" msgid "Reset slave"
msgstr "" 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 #: server_replication.php:326
#, php-format #, fuzzy
msgid "IO Thread %s only" #| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "只有結構"
#: server_replication.php:328
msgid "Stop SQL Thread only"
msgstr "" msgstr ""
#: server_replication.php:330 #: server_replication.php:331
msgid "Error management:" #, fuzzy
msgstr "" #| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "只有結構"
#: server_replication.php:332 #: server_replication.php:333
msgid "Skipping errors might lead into unsynchronized master and slave!" msgid "Stop IO Thread only"
msgstr ""
#: server_replication.php:334
msgid "Skip current error"
msgstr ""
#: server_replication.php:335
msgid "Skip next"
msgstr "" msgstr ""
#: server_replication.php:338 #: 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." msgid "errors."
msgstr "" msgstr ""
#: server_replication.php:353 #: server_replication.php:361
#, php-format #, php-format
msgid "" msgid ""
"This server is not configured as slave in a replication process. Would you " "This server is not configured as slave in a replication process. Would you "
@@ -9697,6 +9712,10 @@ msgstr ""
msgid "Rename view to" msgid "Rename view to"
msgstr "將檢視表改名為" msgstr "將檢視表改名為"
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sat"
#, fuzzy #, fuzzy
#~| msgid "Displaying Column Comments" #~| msgid "Displaying Column Comments"
#~ msgid "Display table filter" #~ msgid "Display table filter"

View File

@@ -134,8 +134,11 @@ fi
if [ -f ./scripts/compress-js ] ; then if [ -f ./scripts/compress-js ] ; then
echo "* Compressing javascript files" echo "* Compressing javascript files"
./scripts/compress-js ./scripts/compress-js
rm -rf sources
fi fi
echo "* Removing unneeded files"
# Remove test directory from package to avoid Path disclosure messages # Remove test directory from package to avoid Path disclosure messages
# if someone runs /test/wui.php and there are test failures # if someone runs /test/wui.php and there are test failures
rm -rf test rm -rf test
@@ -143,6 +146,11 @@ rm -rf test
# Remove javascript compiler, no need to ship it # Remove javascript compiler, no need to ship it
rm -rf scripts/google-javascript-compiler/ 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 # Remove git metadata
rm -rf .git rm -rf .git
find . -name .gitignore -print0 | xargs -0 -r rm -f find . -name .gitignore -print0 | xargs -0 -r rm -f
@@ -158,14 +166,20 @@ for kit in $KITS ; do
# Cleanup translations # Cleanup translations
cd phpMyAdmin-$version-$kit cd phpMyAdmin-$version-$kit
scripts/lang-cleanup.sh $kit scripts/lang-cleanup.sh $kit
rm -f scripts/lang-cleanup.sh
cd .. cd ..
# Remove tar file possibly left from previous run
rm -f $name.tar
# Prepare distributions # Prepare distributions
for comp in $COMPRESSIONS ; do for comp in $COMPRESSIONS ; do
case $comp in case $comp in
tbz|tgz|txz) tbz|tgz|txz)
echo "* Creating $name.tar" if [ ! -f $name.tar ] ; then
tar cf $name.tar $name echo "* Creating $name.tar"
tar cf $name.tar $name
fi
if [ $comp = tbz ] ; then if [ $comp = tbz ] ; then
echo "* Creating $name.tar.bz2" echo "* Creating $name.tar.bz2"
bzip2 -9k $name.tar bzip2 -9k $name.tar
@@ -178,7 +192,6 @@ for kit in $KITS ; do
echo "* Creating $name.tar.gz" echo "* Creating $name.tar.gz"
gzip -9c $name.tar > $name.tar.gz gzip -9c $name.tar > $name.tar.gz
fi fi
rm $name.tar
;; ;;
zip) zip)
echo "* Creating $name.zip" echo "* Creating $name.zip"
@@ -196,6 +209,9 @@ for kit in $KITS ; do
echo "WARNING: ignoring compression '$comp', not known!" echo "WARNING: ignoring compression '$comp', not known!"
;; ;;
esac esac
# Cleanup
rm -f $name.tar
done done
# Remove directory with current dist set # Remove directory with current dist set

View File

@@ -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

View File

@@ -322,8 +322,16 @@ if (! isset($GLOBALS['repl_clear_scr'])) {
echo ' <ul>'; 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_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_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>'; if ($server_slave_replication[0]['Slave_SQL_Running'] == 'No') {
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>'; 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 ' </ul>';
echo ' </div>'; echo ' </div>';
echo ' </li>'; echo ' </li>';