diff --git a/ChangeLog b/ChangeLog index 16c8f8817d29..d9d455ec7bd2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25,12 +25,13 @@ phpMyAdmin - ChangeLog + [display] More options for browsing GIS data + [interface] Support for spatial indexes + [display] GIS data visualization ++ AJAX for table structure multiple-columns change 3.4.4.0 (not yet released) - bug #3323060 [parser] SQL parser breaks AJAX requests if query has unclosed quotes - bug #3323101 [parser] Invalid escape sequence in SQL parser -3.4.3.0 (not yet released) +3.4.3.0 (2011-06-27) - bug #3311170 [sync] Missing helper icons in Synchronize - patch #3304473 [setup] Redefine a lable that was wrong - bug #3304544 [parser] master is not a reserved word diff --git a/db_events.php b/db_events.php index 6b39b83d856d..7d22f5d8c5ba 100644 --- a/db_events.php +++ b/db_events.php @@ -1,7 +1,9 @@ 0) { while ($tmp = PMA_DBI_fetch_row($result)) { if (! isset($sot_cache[$tmp[0]])) { - $sts_result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . PMA_sqlAddSlashes($tmp[0]) . '\';'); + $sts_result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . PMA_sqlAddSlashes($tmp[0], true) . '\';'); $sts_tmp = PMA_DBI_fetch_assoc($sts_result); $tables[] = $sts_tmp; } else { // table in use diff --git a/db_routines.php b/db_routines.php index f0466489690b..b9417fdc18e6 100644 --- a/db_routines.php +++ b/db_routines.php @@ -1,6 +1,8 @@ ' . htmlspecialchars($create_proc) . ''; if ($GLOBALS['is_ajax_request']) { @@ -345,7 +347,7 @@ $extra_data = array(); if ($message->isSuccess()) { $columns = "`SPECIFIC_NAME`, `ROUTINE_NAME`, `ROUTINE_TYPE`, `DTD_IDENTIFIER`, `ROUTINE_DEFINITION`"; - $where = "ROUTINE_SCHEMA='" . PMA_sqlAddslashes($db) . "' AND ROUTINE_NAME='" . PMA_sqlAddslashes($_REQUEST['routine_name']) . "'"; + $where = "ROUTINE_SCHEMA='" . PMA_sqlAddSlashes($db) . "' AND ROUTINE_NAME='" . PMA_sqlAddSlashes($_REQUEST['routine_name']) . "'"; $routine = PMA_DBI_fetch_single_row("SELECT $columns FROM `INFORMATION_SCHEMA`.`ROUTINES` WHERE $where;"); $extra_data['name'] = htmlspecialchars(strtoupper($_REQUEST['routine_name'])); $extra_data['new_row'] = PMA_RTN_getRowForRoutinesList($routine, 0, true); diff --git a/db_search.php b/db_search.php index 50a3207dc203..5907cc50e7c5 100644 --- a/db_search.php +++ b/db_search.php @@ -5,30 +5,6 @@ * * @todo make use of UNION when searching multiple tables * @todo display executed query, optional? - * @uses $cfg['UseDbSearch'] - * @uses $GLOBALS['db'] - * @uses PMA_DBI_get_tables() - * @uses PMA_sqlAddslashes() - * @uses PMA_getSearchSqls() - * @uses PMA_DBI_fetch_value() - * @uses PMA_linkOrButton() - * @uses PMA_generate_common_url() - * @uses PMA_generate_common_hidden_inputs() - * @uses PMA_showMySQLDocu() - * @uses $_REQUEST['search_str'] - * @uses $_REQUEST['submit_search'] - * @uses $_REQUEST['search_option'] - * @uses $_REQUEST['table_select'] - * @uses $_REQUEST['unselectall'] - * @uses $_REQUEST['selectall'] - * @uses $_REQUEST['field_str'] - * @uses is_string() - * @uses htmlspecialchars() - * @uses array_key_exists() - * @uses is_array() - * @uses array_intersect() - * @uses sprintf() - * @uses in_array() * @package phpMyAdmin */ @@ -85,11 +61,11 @@ $searched = htmlspecialchars($_REQUEST['search_str']); // For "as regular expression" (search option 4), we should not treat // this as an expression that contains a LIKE (second parameter of - // PMA_sqlAddslashes()). + // PMA_sqlAddSlashes()). // // Usage example: If user is seaching for a literal $ in a regexp search, // he should enter \$ as the value. - $search_str = PMA_sqlAddslashes($_REQUEST['search_str'], ($search_option == 4 ? false : true)); + $search_str = PMA_sqlAddSlashes($_REQUEST['search_str'], ($search_option == 4 ? false : true)); } $tables_selected = array(); @@ -108,7 +84,7 @@ if (empty($_REQUEST['field_str']) || ! is_string($_REQUEST['field_str'])) { unset($field_str); } else { - $field_str = PMA_sqlAddslashes($_REQUEST['field_str'], true); + $field_str = PMA_sqlAddSlashes($_REQUEST['field_str'], true); } /** @@ -130,7 +106,6 @@ * Builds the SQL search query * * @todo can we make use of fulltextsearch IN BOOLEAN MODE for this? - * @uses PMA_DBI_query * PMA_backquote * PMA_DBI_free_result * PMA_DBI_fetch_assoc diff --git a/db_tracking.php b/db_tracking.php index c0421d600d50..3a9b6954b7e6 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -67,7 +67,7 @@ $all_tables_query = ' SELECT table_name, MAX(version) as version FROM ' . PMA_backquote($GLOBALS['cfg']['Server']['pmadb']) . '.' . PMA_backquote($GLOBALS['cfg']['Server']['tracking']) . - ' WHERE ' . PMA_backquote('db_name') . ' = \'' . PMA_sqlAddslashes($_REQUEST['db']) . '\' ' . + ' WHERE ' . PMA_backquote('db_name') . ' = \'' . PMA_sqlAddSlashes($_REQUEST['db']) . '\' ' . ' GROUP BY '. PMA_backquote('table_name') . ' ORDER BY '. PMA_backquote('table_name') .' ASC'; @@ -110,7 +110,7 @@ $table_query = ' SELECT * FROM ' . PMA_backquote($GLOBALS['cfg']['Server']['pmadb']) . '.' . PMA_backquote($GLOBALS['cfg']['Server']['tracking']) . - ' WHERE `db_name` = \'' . PMA_sqlAddslashes($_REQUEST['db']) . '\' AND `table_name` = \'' . PMA_sqlAddslashes($table_name) . '\' AND `version` = \'' . $version_number . '\''; + ' WHERE `db_name` = \'' . PMA_sqlAddSlashes($_REQUEST['db']) . '\' AND `table_name` = \'' . PMA_sqlAddSlashes($table_name) . '\' AND `version` = \'' . $version_number . '\''; $table_result = PMA_query_as_controluser($table_query); $version_data = PMA_DBI_fetch_array($table_result); diff --git a/import.php b/import.php index 1246f209e00f..64756b5a0200 100644 --- a/import.php +++ b/import.php @@ -3,7 +3,6 @@ /** * Core script for import, this is just the glue around all other stuff * - * @uses PMA_Bookmark_getList() * @package phpMyAdmin */ @@ -154,7 +153,7 @@ case 0: // bookmarked query that have to be run $import_text = PMA_Bookmark_get($db, $id_bookmark, 'id', isset($action_bookmark_all)); if (isset($bookmark_variable) && !empty($bookmark_variable)) { - $import_text = preg_replace('|/\*(.*)\[VARIABLE\](.*)\*/|imsU', '${1}' . PMA_sqlAddslashes($bookmark_variable) . '${2}', $import_text); + $import_text = preg_replace('|/\*(.*)\[VARIABLE\](.*)\*/|imsU', '${1}' . PMA_sqlAddSlashes($bookmark_variable) . '${2}', $import_text); } // refresh left frame on changes in table or db structure diff --git a/index.php b/index.php index 070099b0690b..cb5eb6377501 100644 --- a/index.php +++ b/index.php @@ -3,26 +3,7 @@ /** * forms frameset * - * @uses $GLOBALS['cfg']['QueryHistoryDB'] - * @uses $GLOBALS['cfg']['Server']['user'] - * @uses $GLOBALS['cfg']['DefaultTabServer'] as src for the mainframe - * @uses $GLOBALS['cfg']['DefaultTabDatabase'] as src for the mainframe - * @uses $GLOBALS['cfg']['NaviWidth'] for navi frame width - * @uses $GLOBALS['collation_connection'] from $_REQUEST (grab_globals.lib.php) * or common.inc.php - * @uses $GLOBALS['available_languages'] from common.inc.php (select_lang.lib.php) - * @uses $GLOBALS['db'] - * @uses $GLOBALS['lang'] - * @uses $GLOBALS['text_dir'] - * @uses $_ENV['HTTP_HOST'] - * @uses PMA_getRelationsParam() - * @uses PMA_purgeHistory() - * @uses PMA_generate_common_url() - * @uses PMA_VERSION - * @uses session_write_close() - * @uses time() - * @uses PMA_getenv() - * @uses header() to send charset * @package phpMyAdmin */ diff --git a/js/functions.js b/js/functions.js index 436805c20058..397f2484caba 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2013,6 +2013,10 @@ $(document).ready(function() { * Hides certain table structure actions, replacing them with the word "More". They are displayed * in a dropdown menu when the user hovers over the word "More." */ + displayMoreTableOpts(); +}); + +function displayMoreTableOpts() { // Remove the actions from the table cells (they are available by default for JavaScript-disabled browsers) // if the table is not a view or information_schema (otherwise there is only one action to hide and there's no point) if($("input[type='hidden'][name='table_type']").val() == "table") { @@ -2081,8 +2085,7 @@ $(document).ready(function() { } }); } -}); - +} $(document).ready(initTooltips); /* Displays tooltips */ diff --git a/js/sql.js b/js/sql.js index b89d48b54eef..14f4c0541057 100644 --- a/js/sql.js +++ b/js/sql.js @@ -187,6 +187,13 @@ $(document).ready(function() { cache: 'false' }); + /* Hides the bookmarkoptions checkboxes when the bookmark label is empty */ + $('input#bkm_label').keyup(function() { + $('input#id_bkm_all_users, input#id_bkm_replace') + .parent() + .toggle($(this).attr('value').length > 0); + }).trigger('keyup'); + /** * current value of the direction in which the table is displayed * @type String diff --git a/js/tbl_structure.js b/js/tbl_structure.js index 352848cb6530..d1a267625360 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -145,5 +145,109 @@ $(document).ready(function() { }) // end $.get() }) // end $.PMA_confirm() }) //end Drop Primary Key/Index - + + /** + *Ajax event handler for muti column change + **/ + $("#fieldsForm.ajax .mult_submit[value=change]").live('click', function(event){ + event.preventDefault(); + + /*Check whether atleast one row is selected for change*/ + if($("#tablestructure tbody tr").hasClass("marked")){ + var div = $('
'); + + /** + * @var button_options Object that stores the options passed to jQueryUI + * dialog + */ + var button_options = {}; + // in the following function we need to use $(this) + button_options[PMA_messages['strCancel']] = function() {$(this).parent().dialog('close').remove();} + + var button_options_error = {}; + button_options_error[PMA_messages['strOK']] = function() {$(this).parent().dialog('close').remove();} + var $form = $("#fieldsForm"); + var $msgbox = PMA_ajaxShowMessage(); + + $.get( $form.attr('action') , $form.serialize()+"&ajax_request=true&submit_mult=change" , function(data) { + //in the case of an error, show the error message returned. + if (data.success != undefined && data.success == false) { + div + .append(data.error) + .dialog({ + title: PMA_messages['strChangeTbl'], + height: 230, + width: 900, + open: PMA_verifyTypeOfAllColumns, + buttons : button_options_error + })// end dialog options + } else { + div + .append(data) + .dialog({ + title: PMA_messages['strChangeTbl'], + height: 600, + width: 900, + open: PMA_verifyTypeOfAllColumns, + buttons : button_options + }) + //Remove the top menu container from the dialog + .find("#topmenucontainer").hide() + ; // end dialog options + $("#append_fields_form input[name=do_save_data]").addClass("ajax"); + } + PMA_ajaxRemoveMessage($msgbox); + }) // end $.get() + } else { + PMA_ajaxShowMessage(PMA_messages['strNoRowSelected']); + } + }); + + /** + *Ajax action for submitting the column change form + **/ + $("#append_fields_form input[name=do_save_data].ajax").live('click', function(event) { + event.preventDefault(); + /** + * @var the_form object referring to the export form + */ + var $form = $("#append_fields_form"); + + PMA_prepareForAjaxRequest($form); + //User wants to submit the form + $.post($form.attr('action'), $form.serialize()+"&do_save_data=Save", function(data) { + if ($("#sqlqueryresults").length != 0) { + $("#sqlqueryresults").remove(); + } else if ($(".error").length != 0) { + $(".error").remove(); + } + if (data.success == true) { + PMA_ajaxShowMessage(data.message); + $("
").insertAfter("#topmenucontainer"); + $("#sqlqueryresults").html(data.sql_query); + $("#result_query .notice").remove(); + $("#result_query").prepend((data.message)); + if ($("#change_column_dialog").length > 0) { + $("#change_column_dialog").dialog("close").remove(); + } + /*Reload the field form*/ + $.post($("#fieldsForm").attr('action'), $("#fieldsForm").serialize()+"&ajax_request=true", function(form_data) { + $("#fieldsForm").remove(); + var $temp_div = $("
").append(form_data); + if ($("#sqlqueryresults").length != 0) { + $temp_div.find("#fieldsForm").insertAfter("#sqlqueryresults"); + } else { + $temp_div.find("#fieldsForm").insertAfter(".error"); + } + /*Call the function to display the more options in table*/ + displayMoreTableOpts(); + }); + } else { + var $temp_div = $("
").append(data); + var $error = $temp_div.find(".error code").addClass("error"); + PMA_ajaxShowMessage($error); + } + }) // end $.post() + }) // end insert table button "do_save_data" + }) // end $(document).ready() diff --git a/libraries/Config.class.php b/libraries/Config.class.php index f71a4e91fa31..9c7ab4804db3 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -305,10 +305,6 @@ function checkPhpVersion() /** * loads default values from default source * - * @uses file_exists() - * @uses $this->default_source - * @uses $this->error_config_default_file - * @uses $this->settings * @return boolean success */ function loadDefaults() @@ -418,16 +414,6 @@ function load($source = null) * Loads user preferences and merges them with current config * must be called after control connection has been estabilished * - * @uses $GLOBALS['cfg'] - * @uses $GLOBALS['collation_connection'] - * @uses $GLOBALS['lang'] - * @uses $_SESSION['cache']['server_$server']['config_mtime'] - * @uses $_SESSION['cache']['server_$server']['userprefs'] - * @uses $_SESSION['cache']['server_$server']['userprefs_mtime'] - * @uses $_SESSION['PMA_Theme_Manager'] - * @uses PMA_apply_userprefs() - * @uses PMA_array_merge_recursive() - * @uses PMA_load_userprefs() * @return boolean */ function loadUserPreferences() @@ -530,10 +516,6 @@ function loadUserPreferences() * If user preferences are not yet initialized, option is applied to global config and * added to a update queue, which is processed by {@link loadUserPreferences()} * - * @uses $GLOBALS['cfg'] - * @uses PMA_array_read() - * @uses PMA_array_write() - * @uses PMA_persist_option() * @param string $cookie_name can be null * @param string $cfg_path * @param mixed $new_cfg_value @@ -672,7 +654,6 @@ function get($setting) /** * sets configuration variable * - * @uses $this->settings * @param string $setting configuration option * @param string $value new value for configuration option */ @@ -890,14 +871,6 @@ function checkCollationConnection() /** * checks for font size configuration, and sets font size as requested by user * - * @uses $_GET - * @uses $_POST - * @uses $_COOKIE - * @uses preg_match() - * @uses function_exists() - * @uses PMA_Config::set() - * @uses PMA_Config::get() - * @uses PMA_Config::setCookie() */ function checkFontsize() { @@ -1105,8 +1078,6 @@ function save() {} /** * returns options for font size selection * - * @uses preg_replace() - * @uses ksort() * @static * @param string $current_size current selected font size with unit * @return array selectable font sizes @@ -1167,9 +1138,6 @@ static protected function _getFontsizeOptions($current_size = '82%') /** * returns html selectbox for font sizes * - * @uses $GLOBALS['PMA_Config'] - * @uses PMA_Config::get() - * @uses PMA_Config::_getFontsizeOptions() * @static * @param string $current_size currently slected font size with unit * @return string html selectbox @@ -1204,8 +1172,6 @@ static protected function _getFontsizeSelection() /** * return complete font size selection form * - * @uses PMA_generate_common_hidden_inputs() - * @uses PMA_Config::_getFontsizeSelection() * @static * @param string $current_size currently slected font size with unit * @return string html selectbox @@ -1225,10 +1191,6 @@ static public function getFontsizeForm() /** * removes cookie * - * @uses PMA_Config::isHttps() - * @uses PMA_Config::getCookiePath() - * @uses setcookie() - * @uses time() * @param string $cookie name of cookie to remove * @return boolean result of setcookie() */ @@ -1242,12 +1204,6 @@ function removeCookie($cookie) * sets cookie if value is different from current cokkie value, * or removes if value is equal to default * - * @uses PMA_Config::isHttps() - * @uses PMA_Config::getCookiePath() - * @uses $_COOKIE - * @uses PMA_Config::removeCookie() - * @uses setcookie() - * @uses time() * @param string $cookie name of cookie to remove * @param mixed $value new cookie value * @param string $default default value diff --git a/libraries/Error.class.php b/libraries/Error.class.php index 2cfd5fe75188..e5d105c70e3c 100644 --- a/libraries/Error.class.php +++ b/libraries/Error.class.php @@ -93,12 +93,6 @@ class PMA_Error extends PMA_Message /** * Constructor * - * @uses debug_backtrace() - * @uses PMA_Error::setNumber() - * @uses PMA_Error::setMessage() - * @uses PMA_Error::setFile() - * @uses PMA_Error::setLine() - * @uses PMA_Error::setBacktrace() * @param integer $errno * @param string $errstr * @param string $errfile @@ -122,7 +116,6 @@ public function __construct($errno, $errstr, $errfile, $errline) /** * sets PMA_Error::$_backtrace * - * @uses PMA_Error::$_backtrace to set it * @param array $backtrace */ public function setBacktrace($backtrace) @@ -133,7 +126,6 @@ public function setBacktrace($backtrace) /** * sets PMA_Error::$_line * - * @uses PMA_Error::$_line to set it * @param integer $line */ public function setLine($line) @@ -144,8 +136,6 @@ public function setLine($line) /** * sets PMA_Error::$_file * - * @uses PMA_Error::$_file to set it - * @uses PMA_Error::relPath() * @param string $file */ public function setFile($file) @@ -157,13 +147,6 @@ public function setFile($file) /** * returns unique PMA_Error::$_hash, if not exists it will be created * - * @uses PMA_Error::$_hash as return value and to set it if required - * @uses PMA_Error::getNumber() - * @uses PMA_Error::getMessage() - * @uses PMA_Error::getFile() - * @uses PMA_Error::getLine() - * @uses PMA_Error::getBacktrace() - * @uses md5() * @param string $file * @return string PMA_Error::$_hash */ @@ -185,7 +168,6 @@ public function getHash() /** * returns PMA_Error::$_backtrace * - * @uses PMA_Error::$_backtrace as return value * @return array PMA_Error::$_backtrace */ public function getBacktrace() @@ -196,7 +178,6 @@ public function getBacktrace() /** * returns PMA_Error::$_file * - * @uses PMA_Error::$_file as return value * @return string PMA_Error::$_file */ public function getFile() @@ -207,7 +188,6 @@ public function getFile() /** * returns PMA_Error::$_line * - * @uses PMA_Error::$_line as return value * @return integer PMA_Error::$_line */ public function getLine() @@ -218,8 +198,6 @@ public function getLine() /** * returns type of error * - * @uses PMA_Error::$errortype - * @uses PMA_Error::getNumber() * @return string type of error */ public function getType() @@ -230,8 +208,6 @@ public function getType() /** * returns level of error * - * @uses PMA_Error::$$errorlevel - * @uses PMA_Error::getNumber() * @return string level of error */ public function getLevel() @@ -242,9 +218,6 @@ public function getLevel() /** * returns title prepared for HTML Title-Tag * - * @uses PMA_Error::getTitle() - * @uses htmlspecialchars() - * @uses substr() * @return string HTML escaped and truncated title */ public function getHtmlTitle() @@ -255,8 +228,6 @@ public function getHtmlTitle() /** * returns title for error * - * @uses PMA_Error::getType() - * @uses PMA_Error::getMessage() * @return string */ public function getTitle() @@ -267,10 +238,6 @@ public function getTitle() /** * Display HTML backtrace * - * @uses PMA_Error::getBacktrace() - * @uses PMA_Error::relPath() - * @uses PMA_Error::displayArg() - * @uses count() */ public function displayBacktrace() { @@ -300,9 +267,6 @@ public function displayBacktrace() * Display a single function argument * if $function is one of include/require the $arg is converted te relative path * - * @uses PMA_Error::relPath() - * @uses in_array() - * @uses gettype() * @param string $arg * @param string $function */ @@ -327,11 +291,6 @@ protected function displayArg($arg, $function) /** * Displays the error in HTML * - * @uses PMA_Error::getLevel() - * @uses PMA_Error::getType() - * @uses PMA_Error::getMessage() - * @uses PMA_Error::displayBacktrace() - * @uses PMA_Error::isDisplayed() */ public function display() { @@ -356,10 +315,6 @@ public function display() /** * whether this error is a user error * - * @uses E_USER_WARNING - * @uses E_USER_ERROR - * @uses E_USER_NOTICE - * @uses PMA_Error::getNumber() * @return boolean */ public function isUserError() @@ -374,16 +329,6 @@ public function isUserError() * and make users feel save to submit error reports * * @static - * @uses PHP_OS() - * @uses __FILE__() - * @uses realpath() - * @uses substr() - * @uses explode() - * @uses dirname() - * @uses implode() - * @uses count() - * @uses array_pop() - * @uses str_replace() * @param string $dest path to be shorten * @return string shortened path */ diff --git a/libraries/Error_Handler.class.php b/libraries/Error_Handler.class.php index 0b9089833d91..f65dc4b89c89 100644 --- a/libraries/Error_Handler.class.php +++ b/libraries/Error_Handler.class.php @@ -28,7 +28,6 @@ class PMA_Error_Handler /** * Constructor - set PHP error handler * - * @uses set_error_handler() */ public function __construct() { @@ -40,10 +39,6 @@ public function __construct() * * stores errors in session * - * @uses $_SESSION['errors'] - * @uses array_merge() - * @uses PMA_Error_Handler::$_errors - * @uses PMA_Error::isDisplayed() */ public function __destruct() { @@ -69,8 +64,6 @@ public function __destruct() /** * returns array with all errors * - * @uses PMA_Error_Handler::$_errors as return value - * @uses PMA_Error_Handler::_checkSavedErrors() * @return array PMA_Error_Handler::$_errors */ protected function getErrors() @@ -90,24 +83,6 @@ protected function getErrors() * Do not use the context parameter as we want to avoid storing the * complete $GLOBALS inside $_SESSION['errors'] * - * @uses E_USER_NOTICE - * @uses E_USER_WARNING - * @uses E_STRICT - * @uses E_NOTICE - * @uses E_WARNING - * @uses E_CORE_WARNING - * @uses E_COMPILE_WARNING - * @uses E_USER_ERROR - * @uses E_ERROR - * @uses E_PARSE - * @uses E_CORE_ERROR - * @uses E_COMPILE_ERROR - * @uses E_RECOVERABLE_ERROR - * @uses PMA_Error - * @uses PMA_Error_Handler::$_errors - * @uses PMA_Error_Handler::_dispFatalError() - * @uses PMA_Error::getHash() - * @uses PMA_Error::getNumber() * @param integer $errno * @param string $errstr * @param string $errfile @@ -151,8 +126,6 @@ public function handleError($errno, $errstr, $errfile, $errline) * log error to configured log facility * * @todo finish! - * @uses PMA_Error::getMessage() - * @uses error_log() * @param PMA_Error $error */ protected function _logError($error) @@ -163,7 +136,6 @@ protected function _logError($error) /** * trigger a custom error * - * @uses trigger_error() * @param string $errorInfo * @param integer $errorNumber * @param string $file @@ -178,10 +150,6 @@ public function triggerError($errorInfo, $errorNumber = null, $file = null, $lin /** * display fatal error and exit * - * @uses headers_sent() - * @uses PMA_Error::display() - * @uses PMA_Error_Handler::_dispPageStart() - * @uses PMA_Error_Handler::_dispPageEnd() * @param PMA_Error $error */ protected function _dispFatalError($error) @@ -197,10 +165,6 @@ protected function _dispFatalError($error) /** * display the whole error page with all errors * - * @uses headers_sent() - * @uses PMA_Error_Handler::dispAllErrors() - * @uses PMA_Error_Handler::_dispPageStart() - * @uses PMA_Error_Handler::_dispPageEnd() */ public function dispErrorPage() { @@ -214,10 +178,6 @@ public function dispErrorPage() /** * display user errors not displayed * - * @uses PMA_Error_Handler::getErrors() - * @uses PMA_Error::isDisplayed() - * @uses PMA_Error::isUserError() - * @uses PMA_Error::display() */ public function dispUserErrors() { @@ -231,7 +191,6 @@ public function dispUserErrors() /** * display HTML header * - * @uses PMA_Error::getTitle() * @param PMA_error $error */ protected function _dispPageStart($error = null) @@ -257,8 +216,6 @@ protected function _dispPageEnd() /** * display all errors regardless already displayed or user errors * - * @uses PMA_Error_Handler::getErrors() - * @uses PMA_Error::display() */ public function dispAllErrors() { @@ -270,11 +227,6 @@ public function dispAllErrors() /** * display errors not displayed * - * @uses $cfg['Error_Handler']['display'] - * @uses PMA_Error_Handler::getErrors() - * @uses PMA_Error_Handler::dispUserErrors() - * @uses PMA_Error::isDisplayed() - * @uses PMA_Error::display() */ public function dispErrors() { @@ -296,9 +248,6 @@ public function dispErrors() /** * look in session for saved errors * - * @uses $_SESSION['errors'] - * @uses PMA_Error_Handler::$_errors - * @uses array_merge() */ protected function _checkSavedErrors() { @@ -321,8 +270,6 @@ protected function _checkSavedErrors() /** * return count of errors * - * @uses PMA_Error_Handler::getErrors() - * @uses count() * @return integer number of errors occoured */ public function countErrors() @@ -333,9 +280,6 @@ public function countErrors() /** * return count of user errors * - * @uses PMA_Error_Handler::countErrors() - * @uses PMA_Error_Handler::getErrors() - * @uses PMA_Error::isUserError() * @return integer number of user errors occoured */ public function countUserErrors() @@ -355,7 +299,6 @@ public function countUserErrors() /** * whether use errors occured or not * - * @uses PMA_Error_Handler::countUserErrors() * @return boolean */ public function hasUserErrors() @@ -366,7 +309,6 @@ public function hasUserErrors() /** * whether errors occured or not * - * @uses PMA_Error_Handler::countErrors() * @return boolean */ public function hasErrors() @@ -377,9 +319,6 @@ public function hasErrors() /** * number of errors to be displayed * - * @uses $cfg['Error_Handler']['display'] - * @uses PMA_Error_Handler::countErrors() - * @uses PMA_Error_Handler::countUserErrors() * @return integer number of errors to be displayed */ public function countDisplayErrors() @@ -394,7 +333,6 @@ public function countDisplayErrors() /** * whether there are errors to display or not * - * @uses PMA_Error_Handler::countDisplayErrors() * @return boolean */ public function hasDisplayErrors() diff --git a/libraries/File.class.php b/libraries/File.class.php index 2a33bf3b37a5..c2d5dad4b5af 100644 --- a/libraries/File.class.php +++ b/libraries/File.class.php @@ -79,7 +79,6 @@ class PMA_File * constructor * * @access public - * @uses PMA_File::setName() * @param string $name file name */ function __construct($name = false) @@ -94,7 +93,6 @@ function __construct($name = false) * * @see PMA_File::cleanUp() * @access public - * @uses PMA_File::cleanUp() */ function __destruct() { @@ -105,8 +103,6 @@ function __destruct() * deletes file if it is temporary, usally from a moved upload file * * @access public - * @uses PMA_File::delet() - * @uses PMA_File::isTemp() * @return boolean success */ function cleanUp() @@ -122,8 +118,6 @@ function cleanUp() * deletes the file * * @access public - * @uses PMA_File::getName() - * @uses unlink() * @return boolean success */ function delete() @@ -136,7 +130,6 @@ function delete() * file objects with temp flags are deleted with object destruction * * @access public - * @uses PMA_File::$_is_temp to set and read it * @param boolean sets the temp flag * @return boolean PMA_File::$_is_temp */ @@ -153,7 +146,6 @@ function isTemp($is_temp = null) * accessor * * @access public - * @uses PMA_File::$_name * @param string $name file name */ function setName($name) @@ -163,17 +155,6 @@ function setName($name) /** * @access public - * @uses PMA_File::getName() - * @uses PMA_File::isUploaded() - * @uses PMA_File::checkUploadedFile() - * @uses PMA_File::isReadable() - * @uses PMA_File::$_content - * @uses function_exists() - * @uses file_get_contents() - * @uses filesize() - * @uses fread() - * @uses fopen() - * @uses bin2hex() * @return string binary file content */ function getContent($as_binary = true, $offset = 0, $length = null) @@ -209,8 +190,6 @@ function getContent($as_binary = true, $offset = 0, $length = null) /** * @access public - * @uses PMA_File::getName() - * @uses is_uploaded_file() */ function isUploaded() { @@ -221,7 +200,6 @@ function isUploaded() * accessor * * @access public - * @uses PMA_File::$name as return value * @return string PMA_File::$_name */ function getName() @@ -232,9 +210,6 @@ function getName() /** * @todo replace error message with localized string * @access public - * @uses PMA_File::isUploaded() - * @uses PMA_File::setName() - * @uses PMA_File::$_error_message * @param string name of file uploaded * @return boolean success */ @@ -253,12 +228,6 @@ function setUploadedFile($name) /** * @access public - * @uses PMA_File::fetchUploadedFromTblChangeRequestMultiple() - * @uses PMA_File::setUploadedFile() - * @uses PMA_File::setRecentBLOBReference() - * @uses curl_setopt_array() - * @uses PMA_File::$_error_message - * @uses $_FILES * @param string $key the md5 hash of the column name * @param string $rownumber * @return boolean success @@ -375,9 +344,6 @@ function fetchUploadedFromTblChangeRequestMultiple($file, $rownumber, $key) * sets the name if the file to the one selected in the tbl_change form * * @access public - * @uses $_REQUEST - * @uses PMA_File::setLocalSelectedFile() - * @uses is_string() * @param string $key the md5 hash of the column name * @param string $rownumber * @return boolean success @@ -437,7 +403,6 @@ function setSelectedFromTblChangeRequest($key, $rownumber = null) /** * @access public - * @uses PMA_File->$_error_message as return value * @return string error message */ function getError() @@ -447,7 +412,6 @@ function getError() /** * @access public - * @uses PMA_File->$_error_message to check it * @return boolean whether an error occured or not */ function isError() @@ -460,8 +424,6 @@ function isError() * and uses the submitted/selected file * * @access public - * @uses PMA_File::setUploadedFromTblChangeRequest() - * @uses PMA_File::setSelectedFromTblChangeRequest() * @param string $key the md5 hash of the column name * @param string $rownumber * @return boolean success @@ -485,10 +447,6 @@ function checkTblChangeForm($key, $rownumber) /** * * @access public - * @uses PMA_File::setName() - * @uses PMA_securePath() - * @uses PMA_userDir() - * @uses $GLOBALS['cfg']['UploadDir'] * @param string $name * @return boolean success */ @@ -508,10 +466,6 @@ function setLocalSelectedFile($name) /** * @access public - * @uses PMA_File::getName() - * @uses is_readable() - * @uses ob_start() - * @uses ob_end_clean() * @return boolean whether the file is readable or not */ function isReadable() @@ -532,20 +486,6 @@ function isReadable() * @todo replace error message with localized string * @todo move check of $cfg['TempDir'] into PMA_Config? * @access public - * @uses $cfg['TempDir'] - * @uses PMA_File::isReadable() - * @uses PMA_File::getName() - * @uses PMA_File::setName() - * @uses PMA_File::isTemp() - * @uses PMA_File::$_error_message - * @uses is_dir() - * @uses mkdir() - * @uses chmod() - * @uses is_writable() - * @uses basename() - * @uses move_uploaded_file() - * @uses ob_start() - * @uses ob_end_clean() * @return boolean whether uploaded fiel is fine or not */ function checkUploadedFile() @@ -588,14 +528,6 @@ function checkUploadedFile() * * @todo move file read part into readChunk() or getChunk() * @todo add support for compression plugins - * @uses PMA_File::$_compression to set it - * @uses PMA_File::getName() - * @uses fopen() - * @uses fread() - * @uses strlen() - * @uses fclose() - * @uses chr() - * @uses substr() * @access protected * @return string MIME type of compression, none for none */ @@ -729,8 +661,6 @@ function setCharset($charset) } /** - * @uses PMA_File::$_compression as return value - * @uses PMA_File::detectCompression() * @return string MIME type of compression, none for none * @access public */ diff --git a/libraries/Index.class.php b/libraries/Index.class.php index ae84743a38de..44a683f846fd 100644 --- a/libraries/Index.class.php +++ b/libraries/Index.class.php @@ -86,7 +86,6 @@ class PMA_Index /** * Constructor * - * @uses $this->set() * @param array $params */ public function __construct($params = array()) @@ -112,8 +111,6 @@ static public function singleton($schema, $table, $index_name = '') /** * returns an array with all indexes from the given table * - * @uses PMA_Index::_loadIndexes() - * @uses PMA_Index::$_registry * @param string $table * @param string $schema * @return array @@ -132,8 +129,6 @@ static public function getFromTable($table, $schema) /** * return primary if set, false otherwise * - * @uses PMA_Index::_loadIndexes() - * @uses PMA_Index::$_registry * @param string $table * @param string $schema * @return mixed primary index or false if no one exists @@ -152,11 +147,6 @@ static public function getPrimary($table, $schema) /** * Load index data for table * - * @uses PMA_Index::$_registry - * @uses PMA_DBI_fetch_result() - * @uses PMA_backquote() - * @uses PMA_Index - * @uses PMA_Index->addColumn() * @param string $table * @param string $schema * @return boolean @@ -186,8 +176,6 @@ static protected function _loadIndexes($table, $schema) /** * Add column to index * - * @uses $this->_columns - * @uses PMA_Index_Column * @param array $params column params */ public function addColumn($params) @@ -227,7 +215,6 @@ public function addColumns($columns) /** * Returns true if $column indexed in this index * - * @uses $this->_columns * @param string $column * @return boolean */ @@ -546,12 +533,6 @@ public function getCompareData() /** * Function to check over array of indexes and look for common problems * - * @uses is_string() - * @uses is_array() - * @uses count() - * @uses array_pop() - * @uses reset() - * @uses current() * @access public * @param string name of table * @return string Output HTML diff --git a/libraries/List.class.php b/libraries/List.class.php index 7e7a7bce99b3..50cad40d5722 100644 --- a/libraries/List.class.php +++ b/libraries/List.class.php @@ -27,9 +27,6 @@ public function __construct($array = array(), $flags = 0, $iterator_class = "Arr /** * returns item only if there is only one in the list * - * @uses count() - * @uses reset() - * @uses PMA_List::getEmpty() to return it * @return single item */ public function getSingleItem() @@ -44,7 +41,6 @@ public function getSingleItem() /** * defines what is an empty item (0, '', false or null) * - * @uses PMA_List::$item_empty as return value * @return mixed an empty item */ public function getEmpty() @@ -56,9 +52,6 @@ public function getEmpty() * checks if the given db names exists in the current list, if there is * missing at least one item it returns false otherwise true * - * @uses PMA_List::$items to check for existence of specific item - * @uses func_get_args() - * @uses in_array() to check if given arguments exists in PMA_List::$items * @param string $db_name,.. one or more mysql result resources * @return boolean true if all items exists, otheriwse false */ @@ -77,9 +70,6 @@ public function exists() /** * returns HTML
yourself * after the sliding section. * - * @uses $GLOBALS['cfg']['InitialSlidersState'] * @param string $id the id of the
on which to apply the effect * @param string $message the message to show as a link */ @@ -2584,11 +2482,6 @@ function PMA_cacheUnset($var, $server = 0) * in MySQL a BIT field can be from 1 to 64 bits so we need this * function because in PHP, decbin() supports only 32 bits * - * @uses ceil() - * @uses decbin() - * @uses ord() - * @uses substr() - * @uses sprintf() * @param numeric $value coming from a BIT field * @param integer $length * @return string the printable value @@ -2605,7 +2498,6 @@ function PMA_printable_bit_value($value, $length) { /** * Verifies whether the value contains a non-printable character * - * @uses preg_match() * @param string $value * @return boolean */ @@ -2617,7 +2509,6 @@ function PMA_contains_nonprintable_ascii($value) { * Converts a BIT type default value * for example, b'010' becomes 010 * - * @uses strtr() * @param string $bit_default_value * @return string the converted value */ @@ -2628,9 +2519,6 @@ function PMA_convert_bit_default_value($bit_default_value) { /** * Extracts the various parts from a field type spec * - * @uses strpos() - * @uses chop() - * @uses substr() * @param string $fieldspec * @return array associative array containing type, spec_in_brackets * and possibly enum_set_values (another array) @@ -2707,7 +2595,6 @@ function PMA_extractFieldSpec($fieldspec) { /** * Verifies if this table's engine supports foreign keys * - * @uses strtoupper() * @param string $engine * @return boolean */ @@ -2723,7 +2610,6 @@ function PMA_foreignkey_supported($engine) { /** * Replaces some characters by a displayable equivalent * - * @uses str_replace() * @param string $content * @return string the content with characters replaced */ @@ -2946,7 +2832,6 @@ function PMA_selectUploadFile($import_list, $uploaddir) { * Build titles and icons for action links * * @return array the action titles - * @uses PMA_getIcon() */ function PMA_buildActionTitles() { $titles = array(); @@ -2981,8 +2866,6 @@ function PMA_buildActionTitles() { * * @return mixed An HTML snippet or an array of datatypes. * - * @uses htmlspecialchars() - * @uses in_array() */ function PMA_getSupportedDatatypes($html = false, $selected = '') { @@ -3165,10 +3048,6 @@ function PMA_getFunctionsForField($field, $insert_mode) * // 'CREATE ROUTINE' privilege or, if not, checks if the * // user has this privilege on database 'mydb'. * - * @uses PMA_DBI_fetch_value() - * @uses explode() - * @uses str_replace() - * @uses sprintf() * * @param string $priv The privilege to check * @param mixed $db null, to only check global privileges @@ -3208,7 +3087,7 @@ function PMA_currentUserHasPrivilege($priv, $db = null, $tbl = null) 'SCHEMA_PRIVILEGES', $username, $priv, - PMA_sqlAddslashes($db)))) { + PMA_sqlAddSlashes($db)))) { return true; } } else { @@ -3224,8 +3103,8 @@ function PMA_currentUserHasPrivilege($priv, $db = null, $tbl = null) 'TABLE_PRIVILEGES', $username, $priv, - PMA_sqlAddslashes($db), - PMA_sqlAddslashes($tbl)))) { + PMA_sqlAddSlashes($db), + PMA_sqlAddSlashes($tbl)))) { return true; } } diff --git a/libraries/config/ConfigFile.class.php b/libraries/config/ConfigFile.class.php index 20369f1efcec..c1b4e77fdf9d 100644 --- a/libraries/config/ConfigFile.class.php +++ b/libraries/config/ConfigFile.class.php @@ -72,7 +72,6 @@ class ConfigFile /** * Private constructor, use {@link getInstance()} * - * @uses PMA_array_write() */ private function __construct() { @@ -193,9 +192,6 @@ public function setConfigData(array $cfg) /** * Sets config value * - * @uses PMA_array_read() - * @uses PMA_array_remove() - * @uses PMA_array_write() * @param string $path * @param mixed $value * @param string $canonical_path @@ -285,7 +281,6 @@ public function updateWithGlobalConfig(array $cfg) /** * Returns config value or $default if it's not set * - * @uses PMA_array_read() * @param string $path * @param mixed $default * @return mixed @@ -300,7 +295,6 @@ public function get($path, $default = null) * exist in config.default.php ($cfg) and config.values.php * ($_cfg_db['_overrides']) * - * @uses PMA_array_read() * @param string $canonical_path * @param mixed $default * @return mixed @@ -314,7 +308,6 @@ public function getDefault($canonical_path, $default = null) * Returns config value, if it's not set uses the default one; returns * $default if the path isn't set and doesn't contain a default value * - * @uses PMA_array_read() * @param string $path * @param mixed $default * @return mixed @@ -342,7 +335,6 @@ public function getCanonicalPath($path) { /** * Returns config database entry for $path ($cfg_db in config_info.php) * - * @uses PMA_array_read() * @param string $path * @param mixed $default * @return mixed diff --git a/libraries/config/Form.class.php b/libraries/config/Form.class.php index 7aa8468b08d1..1ec8073f9148 100644 --- a/libraries/config/Form.class.php +++ b/libraries/config/Form.class.php @@ -74,8 +74,6 @@ public function getOptionType($option_name) /** * Returns allowed values for select fields * - * @uses ConfigFile::getDbEntry() - * @uses ConfigFile::getInstance() * @param string $option_path * @return array */ @@ -167,9 +165,6 @@ protected function readFormPaths($form) /** * Reads fields' types to $this->fieldsTypes * - * @uses ConfigFile::getDbEntry() - * @uses ConfigFile::getDefault() - * @uses ConfigFile::getInstance() */ protected function readTypes() { diff --git a/libraries/config/FormDisplay.class.php b/libraries/config/FormDisplay.class.php index de49140f33fc..840d760a6b02 100644 --- a/libraries/config/FormDisplay.class.php +++ b/libraries/config/FormDisplay.class.php @@ -132,9 +132,6 @@ public function process($allow_partial_save = true, $check_form_submit = true) /** * Runs validation for all registered forms * - * @uses ConfigFile::getInstance() - * @uses ConfigFile::getValue() - * @uses PMA_config_validate() */ private function _validate() { @@ -178,19 +175,6 @@ private function _validate() /** * Outputs HTML for forms * - * @uses ConfigFile::getInstance() - * @uses ConfigFile::get() - * @uses display_fieldset_bottom() - * @uses display_fieldset_top() - * @uses display_form_bottom() - * @uses display_form_top() - * @uses display_js() - * @uses display_tabs_bottom() - * @uses display_tabs_top() - * @uses js_validate() - * @uses PMA_config_get_validators() - * @uses PMA_jsFormat() - * @uses PMA_lang() * @param bool $tabbed_form * @param bool $show_restore_default whether show "restore default" button besides the input field */ @@ -281,17 +265,6 @@ public function display($tabbed_form = false, $show_restore_default = false) /** * Prepares data for input field display and outputs HTML code * - * @uses ConfigFile::get() - * @uses ConfigFile::getDefault() - * @uses ConfigFile::getInstance() - * @uses display_group_footer() - * @uses display_group_header() - * @uses display_input() - * @uses Form::getOptionType() - * @uses Form::getOptionValueList() - * @uses PMA_escapeJsString() - * @uses PMA_lang_desc() - * @uses PMA_lang_name() * @param Form $form * @param string $field field name as it appears in $form * @param string $system_path field path, eg. Servers/1/verbose @@ -405,8 +378,6 @@ private function _displayFieldInput(Form $form, $field, $system_path, $work_path /** * Displays errors * - * @uses display_errors() - * @uses PMA_lang_name() */ public function displayErrors() { @@ -429,9 +400,6 @@ public function displayErrors() /** * Reverts erroneous fields to their default values * - * @uses ConfigFile::getDefault() - * @uses ConfigFile::getInstance() - * @uses ConfigFile::set() * */ public function fixErrors() @@ -481,13 +449,6 @@ private function _validateSelect(&$value, array $allowed) /** * Validates and saves form data to session * - * @uses ConfigFile::get() - * @uses ConfigFile::getInstance() - * @uses ConfigFile::getServerCount() - * @uses ConfigFile::set() - * @uses Form::getOptionType() - * @uses Form::getOptionValueList() - * @uses PMA_lang_name() * @param array|string $forms array of form names * @param bool $allow_partial_save allows for partial form saving on failed validation * @return boolean true on success (no errors and all saved) @@ -707,7 +668,6 @@ private function _getOptName($path) /** * Fills out {@link userprefs_keys} and {@link userprefs_disallow} * - * @uses PMA_read_userprefs_fieldnames() */ private function _loadUserprefsInfo() { diff --git a/libraries/config/FormDisplay.tpl.php b/libraries/config/FormDisplay.tpl.php index 84c4ee269e4e..c89365461fda 100644 --- a/libraries/config/FormDisplay.tpl.php +++ b/libraries/config/FormDisplay.tpl.php @@ -9,8 +9,6 @@ /** * Displays top part of the form * - * @uses PMA_generate_common_hidden_inputs() - * @uses PMA_getHiddenFields() * @param string $action default: $_SERVER['REQUEST_URI'] * @param string $method 'post' or 'get' * @param array $hidden_fields array of form hidden fields (key: field name) @@ -115,10 +113,6 @@ function display_fieldset_top($title = '', $description = '', $errors = null, $a * o comment_warning - (bool) whether this comments warns about something * o wiki - (string) wiki link * - * @uses $GLOBALS['_FormDisplayGroup'] - * @uses $GLOBALS['cfg']['ThemePath'] - * @uses $_SESSION['PMA_Theme'] - * @uses display_group_footer() * @param string $path * @param string $name * @param string $description @@ -281,8 +275,6 @@ function display_input($path, $name, $description = '', $type, $value, $value_is /** * Display group header * - * @uses $GLOBALS['_FormDisplayGroup'] - * @uses display_group_footer() * @param string $header_text */ function display_group_header($header_text) @@ -308,7 +300,6 @@ function display_group_header($header_text) /** * Display group footer * - * @uses $GLOBALS['_FormDisplayGroup'] */ function display_group_footer() { @@ -370,7 +361,6 @@ function display_form_bottom() /** * Appends JS validation code to $js_array * - * @uses PMA_escapeJsString() * @param string $field_id * @param string|array $validator * @param array $js_array diff --git a/libraries/config/validate.lib.php b/libraries/config/validate.lib.php index 92e4d070ee5e..bcd62ae29d56 100644 --- a/libraries/config/validate.lib.php +++ b/libraries/config/validate.lib.php @@ -18,8 +18,6 @@ /** * Returns validator list * - * @uses ConfigFile::getDbEntry() - * @uses ConfigFile::getInstance() * @return array */ function PMA_config_get_validators() @@ -65,9 +63,6 @@ function PMA_config_get_validators() * cleanup in HTML documen * o false - when no validators match name(s) given by $validator_id * - * @uses ConfigFile::getCanonicalPath() - * @uses ConfigFile::getInstance() - * @uses PMA_config_get_validators() * @param string|array $validator_id * @param array $values * @param bool $isPostSource tells whether $values are directly from POST request @@ -221,7 +216,6 @@ function test_db_connection($extension, $connect_type, $host, $port, $socket, $u /** * Validate server config * - * @uses test_db_connection() * @param string $path * @param array $values * @return array @@ -256,7 +250,6 @@ function validate_server($path, $values) /** * Validate pmadb config * - * @uses test_db_connection() * @param string $path * @param array $values * @return array @@ -295,7 +288,6 @@ function validate_pmadb($path, $values) /** * Validates regular expression * - * @uses test_php_errormsg() * @param string $path * @param array $values * @return array @@ -399,7 +391,6 @@ function test_number($path, $values, $allow_neg, $allow_zero, $max_value, $error /** * Validates port number * - * @uses test_number() * @param string $path * @param array $values * @return array @@ -412,7 +403,6 @@ function validate_port_number($path, $values) /** * Validates positive number * - * @uses test_number() * @param string $path * @param array $values * @return array @@ -425,7 +415,6 @@ function validate_positive_number($path, $values) /** * Validates non-negative number * - * @uses test_number() * @param string $path * @param array $values * @return array diff --git a/libraries/core.lib.php b/libraries/core.lib.php index 6494d4956165..e61c14699dae 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -29,7 +29,6 @@ * echo PMA_ifSetOr($cfg['ForceSSL'], false, 'boolean'); // true * * - * @uses PMA_isValid() * @see PMA_isValid() * @param mixed $var param to check * @param mixed $default default value @@ -80,12 +79,6 @@ function PMA_ifSetOr(&$var, $default = null, $type = 'similar') * * @todo create some testsuites * @todo add some more var types like hex, bin, ...? - * @uses is_scalar() - * @uses is_numeric() - * @uses is_array() - * @uses in_array() - * @uses gettype() - * @uses strtolower() * @see http://php.net/gettype * @param mixed $var variable to check * @param mixed $type var type or array of valid values to check against $var @@ -199,21 +192,6 @@ function PMA_securePath($path) * loads language file if not loaded already * * @todo use detected argument separator (PMA_Config) - * @uses $GLOBALS['session_name'] - * @uses $GLOBALS['text_dir'] - * @uses $GLOBALS['available_languages'] - * @uses $GLOBALS['lang'] - * @uses $GLOBALS['PMA_Config']->removeCookie() - * @uses select_lang.lib.php - * @uses $_COOKIE - * @uses substr() - * @uses header() - * @uses http_build_query() - * @uses is_string() - * @uses sprintf() - * @uses vsprintf() - * @uses strtr() - * @uses defined() * @param string $error_message the error message or named error message * @param string|array $message_args arguments applied to $error_message * @return exit @@ -290,11 +268,6 @@ function PMA_warnMissingExtension($extension, $fatal = false, $extra = '') /** * returns count of tables in given db * - * @uses PMA_DBI_try_query() - * @uses PMA_backquote() - * @uses PMA_DBI_QUERY_STORE() - * @uses PMA_DBI_num_rows() - * @uses PMA_DBI_free_result() * @param string $db database to count tables for * @return integer count of tables in $db */ @@ -327,9 +300,6 @@ function PMA_getTableCount($db) * (renamed with PMA prefix to avoid double definition when embedded * in Moodle) * - * @uses each() - * @uses strlen() - * @uses substr() * @param string $size * @return integer $size */ @@ -365,10 +335,6 @@ function PMA_get_real_size($size = 0) * * @see http://php.net/array_merge * @see http://php.net/array_merge_recursive - * @uses func_num_args() - * @uses func_get_arg() - * @uses is_array() - * @uses call_user_func_array() * @param array array to merge * @param array array to merge * @param array ... @@ -424,9 +390,6 @@ function PMA_array_merge_recursive() * @see http://www.php-security.org/MOPB/MOPB-02-2007.html * @see http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-1549 * - * @uses PMA_arrayWalkRecursive() - * @uses is_array() - * @uses is_string() * @param array $array array to walk * @param string $function function to call for every array element */ @@ -460,10 +423,6 @@ function PMA_arrayWalkRecursive(&$array, $function, $apply_to_keys_also = false) * checks given given $page against given $whitelist and returns true if valid * it ignores optionaly query paramters in $page (script.php?ignored) * - * @uses in_array() - * @uses urldecode() - * @uses substr() - * @uses strpos() * @param string &$page page to check * @param array $whitelist whitelist to check page against * @return boolean whether $page is valid or not (in $whitelist or not) @@ -493,11 +452,6 @@ function PMA_checkPageValidity(&$page, $whitelist) * searchs in $_SERVER, $_ENV than trys getenv() and apache_getenv() * in this order * - * @uses $_SERVER - * @uses $_ENV - * @uses getenv() - * @uses function_exists() - * @uses apache_getenv() * @param string $var_name variable name * @return string value of $var or empty string */ @@ -519,19 +473,6 @@ function PMA_getenv($var_name) { /** * Send HTTP header, taking IIS limits into account (600 seems ok) * - * @uses PMA_IS_IIS - * @uses PMA_COMING_FROM_COOKIE_LOGIN - * @uses PMA_get_arg_separator() - * @uses SID - * @uses strlen() - * @uses strpos() - * @uses header() - * @uses session_write_close() - * @uses headers_sent() - * @uses function_exists() - * @uses debug_print_backtrace() - * @uses trigger_error() - * @uses defined() * @param string $uri the header to send * @return boolean always true */ diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index 2adb43d38b7b..518cc3b3ec9e 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -148,15 +148,6 @@ function PMA_DBI_try_query($query, $link = null, $options = 0, $cache_affected_r * uses language to charset mapping from mysql/share/errmsg.txt * and charset names to ISO charset from information_schema.CHARACTER_SETS * - * @uses $GLOBALS['cfg']['IconvExtraParams'] - * @uses PMA_DBI_fetch_value() to get server_language - * @uses preg_match() to filter server_language - * @uses in_array() - * @uses function_exists() to check for a convert function - * @uses iconv() to convert message - * @uses libiconv() to convert message - * @uses recode_string() to convert message - * @uses mb_convert_encoding() to convert message * @param string $message * @return string $message */ @@ -287,9 +278,6 @@ function PMA_usort_comparison_callback($a, $b) * * * @todo move into PMA_Table - * @uses PMA_DBI_fetch_result() - * @uses PMA_escape_mysql_wildcards() - * @uses PMA_backquote() * @param string $database database * @param string|false $table table * @param boolean|string $tbl_is_group $table is a table group @@ -338,7 +326,7 @@ function PMA_DBI_get_tables_full($database, $table = false, $tbl_is_group = fals // added BINARY in the WHERE clause to force a case sensitive // comparison (if we are looking for the db Aa we don't want // to find the db aa) - $this_databases = array_map('PMA_sqlAddslashes', $databases); + $this_databases = array_map('PMA_sqlAddSlashes', $databases); if (PMA_DRIZZLE) { $engine_info = PMA_cacheGet('drizzle_engines', true); @@ -454,7 +442,7 @@ function PMA_DBI_get_tables_full($database, $table = false, $tbl_is_group = fals if ($table || (true === $tbl_is_group)) { $sql = 'SHOW TABLE STATUS FROM ' . PMA_backquote($each_database) - .' LIKE \'' . PMA_escape_mysql_wildcards(PMA_sqlAddSlashes($table)) . '%\''; + .' LIKE \'' . PMA_escape_mysql_wildcards(PMA_sqlAddSlashes($table, true)) . '%\''; } else { $sql = 'SHOW TABLE STATUS FROM ' . PMA_backquote($each_database); @@ -1173,29 +1161,6 @@ function PMA_DBI_get_variable($var, $type = PMA_DBI_GETVAR_SESSION, $link = null * Function called just after a connection to the MySQL database server has been established * It sets the connection collation, and determins the version of MySQL which is running. * - * @uses ./libraries/charset_conversion.lib.php - * @uses PMA_DBI_QUERY_STORE - * @uses PMA_MYSQL_INT_VERSION to set it - * @uses PMA_MYSQL_STR_VERSION to set it - * @uses $_SESSION['PMA_MYSQL_INT_VERSION'] for caching - * @uses $_SESSION['PMA_MYSQL_STR_VERSION'] for caching - * @uses PMA_DBI_GETVAR_SESSION - * @uses PMA_DBI_fetch_value() - * @uses PMA_DBI_query() - * @uses PMA_DBI_get_variable() - * @uses $GLOBALS['collation_connection'] - * @uses $GLOBALS['available_languages'] - * @uses $GLOBALS['mysql_charset_map'] - * @uses $GLOBALS['lang'] - * @uses $GLOBALS['cfg']['Lang'] - * @uses defined() - * @uses explode() - * @uses sprintf() - * @uses intval() - * @uses define() - * @uses defined() - * @uses substr() - * @uses count() * @param mixed $link mysql link resource|object * @param boolean $is_controluser */ @@ -1234,7 +1199,7 @@ function PMA_DBI_postConnect($link, $is_controluser = false) if (!PMA_DRIZZLE) { if (! empty($GLOBALS['collation_connection'])) { PMA_DBI_query("SET CHARACTER SET 'utf8';", $link, PMA_DBI_QUERY_STORE); - PMA_DBI_query("SET collation_connection = '" . PMA_sqlAddslashes($GLOBALS['collation_connection']) . "';", $link, PMA_DBI_QUERY_STORE); + PMA_DBI_query("SET collation_connection = '" . PMA_sqlAddSlashes($GLOBALS['collation_connection']) . "';", $link, PMA_DBI_QUERY_STORE); } else { PMA_DBI_query("SET NAMES 'utf8' COLLATE 'utf8_general_ci';", $link, PMA_DBI_QUERY_STORE); } @@ -1265,13 +1230,6 @@ function PMA_DBI_postConnect($link, $is_controluser = false) * // $user_name = 'John Doe' * * - * @uses is_string() - * @uses is_int() - * @uses PMA_DBI_try_query() - * @uses PMA_DBI_num_rows() - * @uses PMA_DBI_fetch_row() - * @uses PMA_DBI_fetch_assoc() - * @uses PMA_DBI_free_result() * @param string|mysql_result $result query or mysql result * @param integer $row_number row to fetch the value from, * starting at 0, with 0 beeing default @@ -1327,13 +1285,6 @@ function PMA_DBI_fetch_value($result, $row_number = 0, $field = 0, $link = null, * // $user = array('id' => 123, 'name' => 'John Doe') * * - * @uses is_string() - * @uses PMA_DBI_try_query() - * @uses PMA_DBI_num_rows() - * @uses PMA_DBI_fetch_row() - * @uses PMA_DBI_fetch_assoc() - * @uses PMA_DBI_fetch_array() - * @uses PMA_DBI_free_result() * @param string|mysql_result $result query or mysql result * @param string $type NUM|ASSOC|BOTH * returned array should either numeric @@ -1413,14 +1364,6 @@ function PMA_DBI_fetch_single_row($result, $type = 'ASSOC', $link = null, $optio * // $users['admin']['John Doe'] = '123' * * - * @uses is_string() - * @uses is_int() - * @uses PMA_DBI_try_query() - * @uses PMA_DBI_num_rows() - * @uses PMA_DBI_num_fields() - * @uses PMA_DBI_fetch_row() - * @uses PMA_DBI_fetch_assoc() - * @uses PMA_DBI_free_result() * @param string|mysql_result $result query or mysql result * @param string|integer $key field-name or offset * used as key for array @@ -1551,8 +1494,6 @@ function PMA_DBI_getCompatibilities() /** * returns warnings for last query * - * @uses $GLOBALS['userlink'] - * @uses PMA_DBI_fetch_result() * @param resource $link mysql link resource * @return array warnings */ @@ -1573,11 +1514,6 @@ function PMA_DBI_get_warnings($link = null) * returns true (int > 0) if current user is superuser * otherwise 0 * - * @uses $_SESSION['is_superuser'] for caching - * @uses $GLOBALS['userlink'] - * @uses $GLOBALS['server'] - * @uses PMA_DBI_try_query() - * @uses PMA_DBI_QUERY_STORE * @return integer $is_superuser */ function PMA_isSuperuser() @@ -1608,7 +1544,6 @@ function PMA_isSuperuser() /** * returns an array of PROCEDURE or FUNCTION names for a db * - * @uses PMA_DBI_free_result() * @param string $db db name * @param string $which PROCEDURE | FUNCTION * @param resource $link mysql link @@ -1634,7 +1569,6 @@ function PMA_DBI_get_procedures_or_functions($db, $which, $link = null) /** * returns the definition of a specific PROCEDURE, FUNCTION or EVENT * - * @uses PMA_DBI_fetch_value() * @param string $db db name * @param string $which PROCEDURE | FUNCTION | EVENT * @param string $name the procedure|function|event name @@ -1656,7 +1590,6 @@ function PMA_DBI_get_definition($db, $which, $name, $link = null) /** * returns details about the TRIGGERs for a specific table or database * - * @uses PMA_DBI_fetch_result() * @param string $db db name * @param string $table table name * @param string $delimiter the delimiter to use (may be empty) @@ -1670,14 +1603,14 @@ function PMA_DBI_get_triggers($db, $table = '', $delimiter = '//') // Note: in http://dev.mysql.com/doc/refman/5.0/en/faqs-triggers.html // their example uses WHERE TRIGGER_SCHEMA='dbname' so let's use this // instead of WHERE EVENT_OBJECT_SCHEMA='dbname' - $query = "SELECT TRIGGER_SCHEMA, TRIGGER_NAME, EVENT_MANIPULATION, EVENT_OBJECT_TABLE, ACTION_TIMING, ACTION_STATEMENT, EVENT_OBJECT_SCHEMA, EVENT_OBJECT_TABLE FROM information_schema.TRIGGERS WHERE TRIGGER_SCHEMA= '" . PMA_sqlAddslashes($db,true) . "';"; + $query = "SELECT TRIGGER_SCHEMA, TRIGGER_NAME, EVENT_MANIPULATION, EVENT_OBJECT_TABLE, ACTION_TIMING, ACTION_STATEMENT, EVENT_OBJECT_SCHEMA, EVENT_OBJECT_TABLE FROM information_schema.TRIGGERS WHERE TRIGGER_SCHEMA= '" . PMA_sqlAddSlashes($db,true) . "';"; if (! empty($table)) { - $query .= " AND EVENT_OBJECT_TABLE = '" . PMA_sqlAddslashes($table, true) . "';"; + $query .= " AND EVENT_OBJECT_TABLE = '" . PMA_sqlAddSlashes($table, true) . "';"; } } else { - $query = "SHOW TRIGGERS FROM " . PMA_backquote(PMA_sqlAddslashes($db,true)); + $query = "SHOW TRIGGERS FROM " . PMA_backquote(PMA_sqlAddSlashes($db,true)); if (! empty($table)) { - $query .= " LIKE '" . PMA_sqlAddslashes($table, true) . "';"; + $query .= " LIKE '" . PMA_sqlAddSlashes($table, true) . "';"; } } @@ -1711,7 +1644,6 @@ function PMA_DBI_get_triggers($db, $table = '', $delimiter = '//') /** * Returns true if $db.$view_name is a view, false if not * - * @uses PMA_DBI_fetch_result() * @param string $db database name * @param string $view_name view/table name * @@ -1722,8 +1654,8 @@ function PMA_isView($db, $view_name) $result = PMA_DBI_fetch_result( "SELECT TABLE_NAME FROM information_schema.VIEWS - WHERE TABLE_SCHEMA = '" . PMA_sqlAddslashes($db) . "' - AND TABLE_NAME = '" . PMA_sqlAddslashes($view_name) . "'"); + WHERE TABLE_SCHEMA = '" . PMA_sqlAddSlashes($db) . "' + AND TABLE_NAME = '" . PMA_sqlAddSlashes($view_name) . "'"); if ($result) { return true; diff --git a/libraries/db_events.inc.php b/libraries/db_events.inc.php index 4aa68a82546d..adf265e2f39c 100644 --- a/libraries/db_events.inc.php +++ b/libraries/db_events.inc.php @@ -8,7 +8,7 @@ exit; } -$events = PMA_DBI_fetch_result('SELECT EVENT_NAME, EVENT_TYPE FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' . PMA_sqlAddslashes($db,true) . '\';'); +$events = PMA_DBI_fetch_result('SELECT EVENT_NAME, EVENT_TYPE FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' . PMA_sqlAddSlashes($db,true) . '\';'); $conditional_class_add = ''; $conditional_class_drop = ''; diff --git a/libraries/db_info.inc.php b/libraries/db_info.inc.php index 9fc6b3c1bb43..e7ae0d9526f7 100644 --- a/libraries/db_info.inc.php +++ b/libraries/db_info.inc.php @@ -9,28 +9,6 @@ * * speedup view on locked tables * - * @uses $cfg['ShowStats'] - * @uses $cfg['ShowTooltip'] - * @uses $cfg['ShowTooltipAliasTB'] - * @uses $cfg['SkipLockedTables'] - * @uses $GLOBALS['db'] - * @uses PMA_fillTooltip() - * @uses PMA_checkParameters() - * @uses PMA_escape_mysql_wildcards() - * @uses PMA_DBI_query() - * @uses PMA_backquote() - * @uses PMA_DBI_num_rows() - * @uses PMA_DBI_fetch_row() - * @uses PMA_DBI_fetch_assoc() - * @uses PMA_DBI_free_result() - * @uses PMA_DBI_get_tables_full() - * @uses PMA_isValid() - * @uses preg_match() - * @uses preg_quote() - * @uses uksort() - * @uses strnatcasecmp() - * @uses count() - * @uses PMA_sqlAddSlashes() * @package phpMyAdmin */ if (! defined('PHPMYADMIN')) { @@ -57,9 +35,6 @@ /** * fills given tooltip arrays * - * @uses $cfg['ShowTooltipAliasTB'] - * @uses PMA_localisedDate() - * @uses strtotime() * @param array $tooltip_truename tooltip data * @param array $tooltip_aliasname tooltip data * @param array $table tabledata @@ -155,7 +130,7 @@ function PMA_fillTooltip(&$tooltip_truename, &$tooltip_aliasname, $table) if (! isset($sot_cache[$tmp[0]])) { $sts_result = PMA_DBI_query( 'SHOW TABLE STATUS FROM ' . PMA_backquote($db) - . ' LIKE \'' . PMA_sqlAddSlashes($tmp[0]) . '\';'); + . ' LIKE \'' . PMA_sqlAddSlashes($tmp[0], true) . '\';'); $sts_tmp = PMA_DBI_fetch_assoc($sts_result); PMA_DBI_free_result($sts_result); unset($sts_result); diff --git a/libraries/db_routines.lib.php b/libraries/db_routines.lib.php index 13859cf8dd31..7591d390b14b 100644 --- a/libraries/db_routines.lib.php +++ b/libraries/db_routines.lib.php @@ -16,13 +16,6 @@ * * @return array Parsed information about the input parameter * - * @uses PMA_SQP_parse() - * @uses PMA_unquote() - * @uses in_array() - * @uses strtoupper() - * @uses strtolower() - * @uses sort() - * @uses implode() */ function PMA_RTN_parseOneParameter($value) { @@ -83,7 +76,6 @@ function PMA_RTN_parseOneParameter($value) * * @return array Information about the parameteres of a routine. * - * @uses PMA_RTN_parseOneParameter() */ function PMA_RTN_parseAllParameters($parsed_query, $routine_type) { @@ -152,8 +144,6 @@ function PMA_RTN_parseAllParameters($parsed_query, $routine_type) * * @return string The definer of a routine. * - * @uses substr() - * @uses PMA_unQuote() */ function PMA_RTN_parseRoutineDefiner($parsed_query) { @@ -185,13 +175,6 @@ function PMA_RTN_parseRoutineDefiner($parsed_query) * * @return array Data necessary to create the routine editor. * - * @uses PMA_sqlAddslashes() - * @uses PMA_DBI_fetch_single_row() - * @uses PMA_SQP_parse() - * @uses PMA_DBI_get_definition() - * @uses PMA_RTN_parseAllParameters() - * @uses PMA_RTN_parseRoutineDefiner() - * @uses PMA_RTN_parseOneParameter() */ function PMA_RTN_getRoutineDataFromName($db, $name, $all = true) { @@ -203,8 +186,8 @@ function PMA_RTN_getRoutineDataFromName($db, $name, $all = true) $fields = "SPECIFIC_NAME, ROUTINE_TYPE, DTD_IDENTIFIER, " . "ROUTINE_DEFINITION, IS_DETERMINISTIC, SQL_DATA_ACCESS, " . "ROUTINE_COMMENT, SECURITY_TYPE"; - $where = "ROUTINE_SCHEMA='" . PMA_sqlAddslashes($db) . "' " - . "AND SPECIFIC_NAME='" . PMA_sqlAddslashes($name) . "'"; + $where = "ROUTINE_SCHEMA='" . PMA_sqlAddSlashes($db) . "' " + . "AND SPECIFIC_NAME='" . PMA_sqlAddSlashes($name) . "'"; $query = "SELECT $fields FROM INFORMATION_SCHEMA.ROUTINES WHERE $where;"; $routine = PMA_DBI_fetch_single_row($query); @@ -310,11 +293,6 @@ function PMA_RTN_getRoutineDataFromName($db, $name, $all = true) * * @return array Data necessary to create the routine editor. * - * @uses isset() - * @uses is_array() - * @uses in_array() - * @uses strtolower() - * @uses PMA_getSupportedDatatypes() */ function PMA_RTN_getRoutineDataFromRequest() { @@ -480,8 +458,6 @@ function PMA_RTN_getRoutineDataFromRequest() * * @return string HTML code of one row of parameter table for the routine editor. * - * @uses PMA_getSupportedDatatypes() - * @uses PMA_getSupportedCharsets() */ function PMA_RTN_getParameterRow($routine = array(), $index = null, $class = '') { @@ -573,11 +549,6 @@ function PMA_RTN_getParameterRow($routine = array(), $index = null, $class = '') * * @return string HTML code for the routine editor. * - * @uses htmlentities() - * @uses PMA_generate_common_hidden_inputs() - * @uses strtoupper() - * @uses PMA_getSupportedDatatypes() - * @uses PMA_getSupportedCharsets() */ function PMA_RTN_getEditorForm($mode, $operation, $routine, $errors, $is_ajax) { global $db, $titles, $param_directions, $param_sqldataaccess, $param_opts_num; @@ -804,16 +775,6 @@ function PMA_RTN_getEditorForm($mode, $operation, $routine, $errors, $is_ajax) { * * @return string HTML code for the routine execution dialog. * - * @uses PMA_generate_common_hidden_inputs() - * @uses PMA_unsupportedDatatypes() - * @uses stristr() - * @uses in_array() - * @uses strtolower() - * @uses strtoupper() - * @uses isset() - * @uses PMA_SQP_parse() - * @uses htmlentities() - * @uses PMA_unquote() */ function PMA_RTN_getExecuteForm($routine, $is_ajax) { @@ -935,16 +896,6 @@ function PMA_RTN_getExecuteForm($routine, $is_ajax) * * @return string The CREATE [ROUTINE | PROCEDURE] query. * - * @uses explode() - * @uses strpos() - * @uses PMA_backquote() - * @uses sprintf() - * @uses htmlspecialchars() - * @uses is_array() - * @uses preg_match() - * @uses count() - * @uses strtoupper() - * @uses strtolower() */ function PMA_RTN_getQueryFromRequest() { global $_REQUEST, $cfg, $routine_errors, $param_sqldataaccess; @@ -1090,12 +1041,6 @@ function PMA_RTN_getQueryFromRequest() { * * @return string An HTML snippet containing a row for the routines list. * - * @uses sprintf() - * @uses PMA_currentUserHasPrivilege() - * @uses PMA_backquote - * @uses PMA_RTN_getRoutineDataFromName() - * @uses htmlspecialchars() - * @uses urlencode() */ function PMA_RTN_getRowForRoutinesList($routine, $ct = 0, $is_ajax = false) { global $titles, $db, $url_query, $ajax_class; @@ -1173,9 +1118,6 @@ function PMA_RTN_getRowForRoutinesList($routine, $ct = 0, $is_ajax = false) { * * @return string An HTML snippet with the list of routines. * - * @uses PMA_sqlAddslashes() - * @uses PMA_DBI_fetch_result() - * @uses PMA_RTN_getRowForRoutinesList() */ function PMA_RTN_getRoutinesList() { @@ -1185,7 +1127,7 @@ function PMA_RTN_getRoutinesList() * Get the routines */ $columns = "`SPECIFIC_NAME`, `ROUTINE_NAME`, `ROUTINE_TYPE`, `DTD_IDENTIFIER`, `ROUTINE_DEFINITION`"; - $where = "ROUTINE_SCHEMA='" . PMA_sqlAddslashes($db) . "'"; + $where = "ROUTINE_SCHEMA='" . PMA_sqlAddSlashes($db) . "'"; $routines = PMA_DBI_fetch_result("SELECT $columns FROM `INFORMATION_SCHEMA`.`ROUTINES` WHERE $where;"); /** * Conditional classes switch the list on or off @@ -1235,9 +1177,6 @@ function PMA_RTN_getRoutinesList() * * @return string An HTML snippet with the link to add a new routine. * - * @uses PMA_currentUserHasPrivilege() - * @uses PMA_getIcon() - * @uses PMA_showMySQLDocu() */ function PMA_RTN_getAddRoutineLink() { diff --git a/libraries/db_structure.lib.php b/libraries/db_structure.lib.php index c288559de9b9..afb3ce55e305 100644 --- a/libraries/db_structure.lib.php +++ b/libraries/db_structure.lib.php @@ -13,11 +13,6 @@ * void PMA_TableHeader([bool $db_is_information_schema = false]) * display table header (...) * - * @uses PMA_showHint() - * @uses $GLOBALS['cfg']['PropertiesNumColumns'] - * @uses $GLOBALS['is_show_stats'] - * @uses $GLOBALS['colspan_for_structure'] - * @uses PMA_SortableTableHeader() * @param boolean $db_is_information_schema * @param boolean $replication */ diff --git a/libraries/db_table_exists.lib.php b/libraries/db_table_exists.lib.php index 8eb93e46d858..97b7ec862ed3 100644 --- a/libraries/db_table_exists.lib.php +++ b/libraries/db_table_exists.lib.php @@ -46,7 +46,7 @@ if (! $is_table) { $_result = PMA_DBI_try_query( - 'SHOW TABLES LIKE \'' . PMA_sqlAddslashes($table, true) . '\';', + 'SHOW TABLES LIKE \'' . PMA_sqlAddSlashes($table, true) . '\';', null, PMA_DBI_QUERY_STORE); $is_table = @PMA_DBI_num_rows($_result); PMA_DBI_free_result($_result); diff --git a/libraries/dbi/mysql.dbi.lib.php b/libraries/dbi/mysql.dbi.lib.php index 5cbb4fa3b77a..aa099eb070e9 100644 --- a/libraries/dbi/mysql.dbi.lib.php +++ b/libraries/dbi/mysql.dbi.lib.php @@ -182,7 +182,6 @@ function PMA_DBI_fetch_row($result) /* * Adjusts the result pointer to an arbitrary row in the result * - * @uses mysql_data_seek() * @param $result * @param $offset * @return boolean true on success, false on failure @@ -235,8 +234,6 @@ function PMA_DBI_next_result() { /** * Returns a string representing the type of connection used - * @uses mysql_get_host_info() - * @uses $GLOBALS['userlink'] as default for $link * @param resource $link mysql link * @return string type of connection used */ @@ -254,8 +251,6 @@ function PMA_DBI_get_host_info($link = null) /** * Returns the version of the MySQL protocol used - * @uses mysql_get_proto_info() - * @uses $GLOBALS['userlink'] as default for $link * @param resource $link mysql link * @return integer version of the MySQL protocol used */ @@ -273,7 +268,6 @@ function PMA_DBI_get_proto_info($link = null) /** * returns a string that represents the client library version - * @uses mysql_get_client_info() * @return string MySQL client library version */ function PMA_DBI_get_client_info() @@ -284,13 +278,6 @@ function PMA_DBI_get_client_info() /** * returns last error message or false if no errors occured * - * @uses PMA_DBI_convert_message() - * @uses $GLOBALS['errno'] - * @uses $GLOBALS['userlink'] - * @uses mysql_errno() - * @uses mysql_error() - * @uses defined() - * @uses PMA_generate_common_url() * @param resource $link mysql link * @return string|boolean $error or false */ @@ -379,8 +366,6 @@ function PMA_DBI_insert_id($link = null) /** * returns the number of rows affected by last query * - * @uses $GLOBALS['userlink'] - * @uses mysql_affected_rows() * @param object mysql $link the mysql object * @param boolean $get_from_cache * @return string integer diff --git a/libraries/dbi/mysqli.dbi.lib.php b/libraries/dbi/mysqli.dbi.lib.php index 37f5daaf6b96..9c8e3a6717da 100644 --- a/libraries/dbi/mysqli.dbi.lib.php +++ b/libraries/dbi/mysqli.dbi.lib.php @@ -36,16 +36,6 @@ /** * connects to the database server * - * @uses $GLOBALS['cfg']['Server'] - * @uses PMA_auth_fails() - * @uses PMA_DBI_postConnect() - * @uses MYSQLI_CLIENT_COMPRESS - * @uses MYSQLI_OPT_LOCAL_INFILE - * @uses strtolower() - * @uses mysqli_init() - * @uses mysqli_options() - * @uses mysqli_real_connect() - * @uses defined() * @param string $user mysql user name * @param string $password mysql user password * @param boolean $is_controluser @@ -131,8 +121,6 @@ function PMA_DBI_connect($user, $password, $is_controluser = false, $server = nu /** * selects given database * - * @uses $GLOBALS['userlink'] - * @uses mysqli_select_db() * @param string $dbname database name to select * @param object mysqli $link the mysqli object * @return boolean true or false @@ -152,11 +140,6 @@ function PMA_DBI_select_db($dbname, $link = null) /** * runs a query and returns the result * - * @uses PMA_DBI_QUERY_STORE - * @uses PMA_DBI_QUERY_UNBUFFERED - * @uses MYSQLI_STORE_RESULT - * @uses MYSQLI_USE_RESULT - * @uses mysqli_query() * @param string $query query to execute * @param object mysqli $link mysqli object * @param integer $options @@ -178,8 +161,6 @@ function PMA_DBI_real_query($query, $link, $options) /** * returns array of rows with associative and numeric keys from $result * - * @uses mysqli_fetch_array() - * @uses MYSQLI_BOTH * @param object mysqli result $result * @return array result rows */ @@ -191,8 +172,6 @@ function PMA_DBI_fetch_array($result) /** * returns array of rows with associative keys from $result * - * @uses mysqli_fetch_array() - * @uses MYSQLI_ASSOC * @param object mysqli result $result * @return array result rows */ @@ -204,8 +183,6 @@ function PMA_DBI_fetch_assoc($result) /** * returns array of rows with numeric keys from $result * - * @uses mysqli_fetch_array() - * @uses MYSQLI_NUM * @param object mysqli result $result * @return array result rows */ @@ -217,7 +194,6 @@ function PMA_DBI_fetch_row($result) /* * Adjusts the result pointer to an arbitrary row in the result * - * @uses mysqli_data_seek() * @param $result * @param $offset * @return boolean true on success, false on failure @@ -230,9 +206,6 @@ function PMA_DBI_data_seek($result, $offset) /** * Frees the memory associated with the results * - * @uses mysqli_result - * @uses func_get_args() - * @uses mysqli_free_result() * @param result $result,... one or more mysql result resources */ function PMA_DBI_free_result() @@ -247,8 +220,6 @@ function PMA_DBI_free_result() /** * Check if there are any more query results from a multi query * - * @uses $GLOBALS['userlink'] - * @uses mysqli_more_results() * @param object mysqli $link the mysqli object * @return boolean true or false */ @@ -266,8 +237,6 @@ function PMA_DBI_more_results($link = null) { /** * Prepare next result from multi_query * - * @uses $GLOBALS['userlink'] - * @uses mysqli_next_result() * @param object mysqli $link the mysqli object * @return boolean true or false */ @@ -284,8 +253,6 @@ function PMA_DBI_next_result($link = null) { /** * Returns a string representing the type of connection used - * @uses mysqli_get_host_info() - * @uses $GLOBALS['userlink'] as default for $link * @param resource $link mysql link * @return string type of connection used */ @@ -303,8 +270,6 @@ function PMA_DBI_get_host_info($link = null) /** * Returns the version of the MySQL protocol used - * @uses mysqli_get_proto_info() - * @uses $GLOBALS['userlink'] as default for $link * @param resource $link mysql link * @return integer version of the MySQL protocol used */ @@ -322,7 +287,6 @@ function PMA_DBI_get_proto_info($link = null) /** * returns a string that represents the client library version - * @uses mysqli_get_client_info() * @return string MySQL client library version */ function PMA_DBI_get_client_info() @@ -333,14 +297,6 @@ function PMA_DBI_get_client_info() /** * returns last error message or false if no errors occured * - * @uses PMA_DBI_convert_message() - * @uses $GLOBALS['errno'] - * @uses $GLOBALS['userlink'] - * @uses mysqli_errno() - * @uses mysqli_error() - * @uses mysqli_connect_errno() - * @uses mysqli_connect_error() - * @uses defined() * @param resource $link mysql link * @return string|boolean $error or false */ @@ -406,8 +362,6 @@ function PMA_DBI_num_rows($result) /** * returns last inserted auto_increment id for given $link or $GLOBALS['userlink'] * - * @uses $GLOBALS['userlink'] - * @uses mysqli_insert_id() * @param object mysqli $link the mysqli object * @return string ineteger */ @@ -432,8 +386,6 @@ function PMA_DBI_insert_id($link = '') /** * returns the number of rows affected by last query * - * @uses $GLOBALS['userlink'] - * @uses mysqli_affected_rows() * @param object mysqli $link the mysqli object * @param boolean $get_from_cache * @return string integer @@ -458,20 +410,6 @@ function PMA_DBI_affected_rows($link = null, $get_from_cache = true) * returns metainfo for fields in $result * * @todo preserve orignal flags value - * @uses PMA_DBI_field_flags() - * @uses MYSQLI_TYPE_* - * @uses MYSQLI_MULTIPLE_KEY_FLAG - * @uses MYSQLI_PRI_KEY_FLAG - * @uses MYSQLI_UNIQUE_KEY_FLAG - * @uses MYSQLI_NOT_NULL_FLAG - * @uses MYSQLI_UNSIGNED_FLAG - * @uses MYSQLI_ZEROFILL_FLAG - * @uses MYSQLI_NUM_FLAG - * @uses MYSQLI_TYPE_BLOB - * @uses MYSQLI_BLOB_FLAG - * @uses defined() - * @uses mysqli_fetch_fields() - * @uses is_array() * @param object mysqli result $result * @return array meta info for fields in $result */ @@ -562,7 +500,6 @@ function PMA_DBI_num_fields($result) /** * returns the length of the given field $i in $result * - * @uses mysqli_fetch_field_direct() * @param object mysqli result $result * @param integer $i field * @return integer length of field @@ -575,7 +512,6 @@ function PMA_DBI_field_len($result, $i) /** * returns name of $i. field in $result * - * @uses mysqli_fetch_field_direct() * @param object mysqli result $result * @param integer $i field * @return string name of $i. field in $result @@ -588,26 +524,6 @@ function PMA_DBI_field_name($result, $i) /** * returns concatenated string of human readable field flags * - * @uses MYSQLI_UNIQUE_KEY_FLAG - * @uses MYSQLI_NUM_FLAG - * @uses MYSQLI_PART_KEY_FLAG - * @uses MYSQLI_TYPE_SET - * @uses MYSQLI_TIMESTAMP_FLAG - * @uses MYSQLI_AUTO_INCREMENT_FLAG - * @uses MYSQLI_TYPE_ENUM - * @uses MYSQLI_ZEROFILL_FLAG - * @uses MYSQLI_UNSIGNED_FLAG - * @uses MYSQLI_BLOB_FLAG - * @uses MYSQLI_MULTIPLE_KEY_FLAG - * @uses MYSQLI_UNIQUE_KEY_FLAG - * @uses MYSQLI_PRI_KEY_FLAG - * @uses MYSQLI_NOT_NULL_FLAG - * @uses MYSQLI_TYPE_BLOB - * @uses MYSQLI_TYPE_MEDIUM_BLOB - * @uses MYSQLI_TYPE_LONG_BLOB - * @uses MYSQLI_TYPE_VAR_STRING - * @uses MYSQLI_TYPE_STRING - * @uses mysqli_fetch_field_direct() * @param object mysqli result $result * @param integer $i field * @return string field flags diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 2007edc428cd..2ecd629c9cc9 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -206,8 +206,6 @@ function PMA_isSelect() /** * Displays a navigation button * - * @uses $GLOBALS['cfg']['NavigationBarIconic'] - * @uses PMA_generate_common_hidden_inputs() * * @param string iconic caption for button * @param string text for button @@ -256,10 +254,6 @@ function PMA_displayTableNavigationOneButton($caption, $title, $pos, $html_sql_q /** * Displays a navigation bar to browse among the results of a SQL query * - * @uses $_SESSION['tmp_user_values']['disp_direction'] - * @uses $_SESSION['tmp_user_values']['repeat_cells'] - * @uses $_SESSION['tmp_user_values']['max_rows'] - * @uses $_SESSION['tmp_user_values']['pos'] * @param integer the offset for the "next" page * @param integer the offset for the "previous" page * @param string the URL-encoded query @@ -452,12 +446,6 @@ function PMA_displayTableNavigation($pos_next, $pos_prev, $sql_query, $id_for_di /** * Displays the headers of the results table * - * @uses $_SESSION['tmp_user_values']['disp_direction'] - * @uses $_SESSION['tmp_user_values']['repeat_cells'] - * @uses $_SESSION['tmp_user_values']['max_rows'] - * @uses $_SESSION['tmp_user_values']['display_text'] - * @uses $_SESSION['tmp_user_values']['display_binary'] - * @uses $_SESSION['tmp_user_values']['display_binary_as_hex'] * @param array which elements to display * @param array the list of fields properties * @param integer the total number of fields returned by the SQL query @@ -1125,13 +1113,6 @@ function PMA_addClass($class, $condition_field, $meta, $nowrap, $is_field_trunca /** * Displays the body of the results table * - * @uses $_SESSION['tmp_user_values']['disp_direction'] - * @uses $_SESSION['tmp_user_values']['repeat_cells'] - * @uses $_SESSION['tmp_user_values']['max_rows'] - * @uses $_SESSION['tmp_user_values']['display_text'] - * @uses $_SESSION['tmp_user_values']['display_binary'] - * @uses $_SESSION['tmp_user_values']['display_binary_as_hex'] - * @uses $_SESSION['tmp_user_values']['display_blob'] * @param integer the link id associated to the query which results have * to be displayed * @param array which elements to display @@ -1606,7 +1587,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { // do not wrap if date field type $nowrap = ((preg_match('@DATE|TIME@i', $meta->type) || $bool_nowrap) ? ' nowrap' : ''); - $where_comparison = ' = \'' . PMA_sqlAddslashes($row[$i]) . '\''; + $where_comparison = ' = \'' . PMA_sqlAddSlashes($row[$i]) . '\''; $vertical_display['data'][$row_no][$i] = '
support - * @uses PMA_ENGINE_SUPPORT_YES * @return array detail pages */ function getInfoPages() @@ -139,12 +135,6 @@ function getInfoPages() /** * returns html tables with stats over inno db buffer pool * - * @uses PMA_DBI_fetch_result() - * @uses PMA_formatNumber() - * @uses PMA_formatByteDown() - * @uses join() - * @uses htmlspecialchars() - * @uses PMA_formatNumber() * @return string html table with stats */ function getPageBufferpool() @@ -272,8 +262,6 @@ function getPageBufferpool() /** * returns InnoDB status * - * @uses htmlspecialchars() - * @uses PMA_DBI_fetch_value() * @return string result of SHOW INNODB STATUS inside pre tags */ function getPageStatus() @@ -286,8 +274,6 @@ function getPageStatus() /** * returns content for page $id * - * @uses $this->getInfoPages() - * @uses array_key_exists() * @param string $id page id * @return string html output */ diff --git a/libraries/export/sql.php b/libraries/export/sql.php index c561a93bddcf..37d3be1a006f 100644 --- a/libraries/export/sql.php +++ b/libraries/export/sql.php @@ -595,7 +595,7 @@ function PMA_exportDBFooter($db) $delimiter = '$$'; if (PMA_MYSQL_INT_VERSION > 50100) { - $event_names = PMA_DBI_fetch_result('SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' . PMA_sqlAddslashes($db,true) . '\';'); + $event_names = PMA_DBI_fetch_result('SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' . PMA_sqlAddSlashes($db,true) . '\';'); } else { $event_names = array(); } @@ -690,7 +690,7 @@ function PMA_getTableDef($db, $table, $crlf, $error_url, $show_dates = false, $a $new_crlf = $crlf; // need to use PMA_DBI_QUERY_STORE with PMA_DBI_num_rows() in mysqli - $result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . PMA_sqlAddslashes($table) . '\'', null, PMA_DBI_QUERY_STORE); + $result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . PMA_sqlAddSlashes($table, true) . '\'', null, PMA_DBI_QUERY_STORE); if ($result != false) { if (PMA_DBI_num_rows($result) > 0) { $tmpres = PMA_DBI_fetch_assoc($result); @@ -1192,10 +1192,10 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) } // detection of 'bit' works only on mysqli extension } elseif ($fields_meta[$j]->type == 'bit') { - $values[] = "b'" . PMA_sqlAddslashes(PMA_printable_bit_value($row[$j], $fields_meta[$j]->length)) . "'"; + $values[] = "b'" . PMA_sqlAddSlashes(PMA_printable_bit_value($row[$j], $fields_meta[$j]->length)) . "'"; // something else -> treat as a string } else { - $values[] = '\'' . str_replace($search, $replace, PMA_sqlAddslashes($row[$j])) . '\''; + $values[] = '\'' . str_replace($search, $replace, PMA_sqlAddSlashes($row[$j])) . '\''; } // end if } // end for diff --git a/libraries/footer.inc.php b/libraries/footer.inc.php index 5a663516642a..c94c0164d563 100644 --- a/libraries/footer.inc.php +++ b/libraries/footer.inc.php @@ -13,31 +13,6 @@ * * always use $GLOBALS, as this script is also included by functions * - * @uses $_REQUEST['no_history'] - * @uses $GLOBALS['lang'] - * @uses $GLOBALS['collation_connection'] - * @uses $GLOBALS['server'] - * @uses $GLOBALS['db'] - * @uses $GLOBALS['table'] - * @uses $GLOBALS['error_message'] - * @uses $GLOBALS['reload'] - * @uses $GLOBALS['sql_query'] - * @uses $GLOBALS['focus_querywindow'] - * @uses $GLOBALS['checked_special'] - * @uses $GLOBALS['pmaThemeImage'] - * @uses $GLOBALS['controllink'] to close it - * @uses $GLOBALS['userlink'] to close it - * @uses $cfg['Server']['user'] - * @uses $cfg['NavigationBarIconic'] - * @uses $cfg['MaxCharactersInDisplayedSQL'] - * @uses PMA_isValid() - * @uses PMA_setHistory() - * @uses PMA_ifSetOr() - * @uses PMA_escapeJsString() - * @uses PMA_getenv() - * @uses PMA_generate_common_url() - * @uses basename() - * @uses file_exists() * @package phpMyAdmin */ if (! defined('PHPMYADMIN')) { diff --git a/libraries/grab_globals.lib.php b/libraries/grab_globals.lib.php index cddaca2098c3..d1988551be46 100644 --- a/libraries/grab_globals.lib.php +++ b/libraries/grab_globals.lib.php @@ -15,11 +15,6 @@ /** * copy values from one array to another, usually from a superglobal into $GLOBALS * - * @uses $GLOBALS['_import_blacklist'] - * @uses preg_replace() - * @uses array_keys() - * @uses array_unique() - * @uses stripslashes() * @param array $array values from * @param array $target values to * @param boolean $sanitize prevent importing key names in $_import_blacklist diff --git a/libraries/header.inc.php b/libraries/header.inc.php index 5c07472bd29e..80763e78b1fc 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -154,8 +154,6 @@ function PMA_addRecentTable($db, $table) { /** * Displays table comment - * @uses $show_comment from libraries/tbl_info.inc.php - * @uses $GLOBALS['avoid_show_comment'] from tbl_relation.php */ if (!empty($show_comment) && ! isset($GLOBALS['avoid_show_comment'])) { if (strstr($show_comment, '; InnoDB free')) { diff --git a/libraries/import.lib.php b/libraries/import.lib.php index 11ae523172f9..e2cbdd201f88 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -73,7 +73,6 @@ function PMA_detectCompression($filepath) * Runs query inside import buffer. This is needed to allow displaying * of last SELECT, SHOW or HANDLER results and similar nice stuff. * - * @uses $GLOBALS['finished'] read and write * @param string query to run * @param string query to display, this might be commented * @param bool whether to use control user for queries @@ -228,11 +227,6 @@ function PMA_lookForUse($buffer, $db, $reload) /** * Returns next part of imported file/buffer * - * @uses $GLOBALS['offset'] read and write - * @uses $GLOBALS['import_file'] read only - * @uses $GLOBALS['import_text'] read and write - * @uses $GLOBALS['finished'] read and write - * @uses $GLOBALS['read_limit'] read only * @param integer size of buffer to read (this is maximal size * function will return) * @return string part of file/buffer @@ -338,7 +332,6 @@ function PMA_importGetNextChunk($size = 32768) * * @access public * - * @uses chr() * @param int $num * @return string The column's "Excel" name */ @@ -386,9 +379,6 @@ function PMA_getColumnAlphaName($num) * * @access public * - * @uses strtoupper() - * @uses strlen() - * @uses ord() * @param string $name (i.e. "A", or "BC", etc.) * @return int The column number */ @@ -449,8 +439,6 @@ function PMA_getColumnNumberFromName($name) { * * @access public * - * @uses substr() - * @uses strpos() * @param string $last_cumulative_size * @return int Precision of the given decimal size notation */ @@ -464,9 +452,6 @@ function PMA_getM($last_cumulative_size) { * * @access public * - * @uses substr() - * @uses strpos() - * @uses strlen() * @param string $last_cumulative_size * @return int Scale of the given decimal size notation */ @@ -480,8 +465,6 @@ function PMA_getD($last_cumulative_size) { * * @access public * - * @uses strlen() - * @uses strpos() * @param string &$cell * @return array Contains the precision, scale, and full size representation of the given decimal cell */ @@ -504,19 +487,6 @@ function PMA_getDecimalSize(&$cell) { * * @access public * - * @uses M - * @uses D - * @uses FULL - * @uses VARCHAR - * @uses DECIMAL - * @uses BIGINT - * @uses INT - * @uses NONE - * @uses strcmp() - * @uses strlen() - * @uses PMA_getM() - * @uses PMA_getD() - * @uses PMA_getDecimalSize() * @param string $last_cumulative_size Last cumulative column size * @param int $last_cumulative_type Last cumulative column type (NONE or VARCHAR or DECIMAL or INT or BIGINT) * @param int $curr_type Type of the current cell (NONE or VARCHAR or DECIMAL or INT or BIGINT) @@ -729,15 +699,6 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type * * @access public * - * @uses DECIMAL - * @uses BIGINT - * @uses INT - * @uses VARCHAR - * @uses NONE - * @uses is_numeric() - * @uses strcmp() - * @uses strpos() - * @uses substr_count() * @param int $last_cumulative_type Last cumulative column type (VARCHAR or INT or BIGINT or DECIMAL or NONE) * @param string &$cell String representation of the cell for which a best-fit type is to be determined * @return int The MySQL type representation (VARCHAR or INT or BIGINT or DECIMAL or NONE) @@ -779,18 +740,6 @@ function PMA_detectType($last_cumulative_type, &$cell) { * * @access public * - * @uses TBL_NAME - * @uses COL_NAMES - * @uses ROWS - * @uses VARCHAR - * @uses DECIMAL - * @uses BIGINT - * @uses INT - * @uses NONE - * @uses count() - * @uses is_array() - * @uses PMA_detectType() - * @uses PMA_detectSize() * @param &$table array(string $table_name, array $col_names, array $rows) * @return array array(array $types, array $sizes) */ @@ -885,20 +834,6 @@ function PMA_analyzeTable(&$table) { * * @access public * - * @uses TBL_NAME - * @uses COL_NAMES - * @uses ROWS - * @uses TYPES - * @uses SIZES - * @uses strcmp() - * @uses count() - * @uses preg_match() - * @uses preg_replace() - * @uses PMA_isView() - * @uses PMA_backquote() - * @uses PMA_importRunQuery() - * @uses PMA_generate_common_url() - * @uses PMA_Message::notice() * @param string $db_name Name of the database * @param array &$tables Array of tables for the specified database * @param array &$analyses = NULL Analyses of the tables @@ -1052,7 +987,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = } $tempSQLStr .= (($is_varchar) ? "'" : ""); - $tempSQLStr .= PMA_sqlAddslashes((string)$tables[$i][ROWS][$j][$k]); + $tempSQLStr .= PMA_sqlAddSlashes((string)$tables[$i][ROWS][$j][$k]); $tempSQLStr .= (($is_varchar) ? "'" : ""); if ($k != ($num_cols - 1)) { diff --git a/libraries/import/docsql.php b/libraries/import/docsql.php index 3ac799f0630d..4ba089a5eccb 100644 --- a/libraries/import/docsql.php +++ b/libraries/import/docsql.php @@ -68,10 +68,10 @@ ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . ' (db_name, table_name, column_name, ' . PMA_backquote('comment') . ') VALUES ( - \'' . PMA_sqlAddslashes($GLOBALS['db']) . '\', - \'' . PMA_sqlAddslashes(trim($tab)) . '\', - \'' . PMA_sqlAddslashes(trim($inf[0])) . '\', - \'' . PMA_sqlAddslashes(trim($inf[1])) . '\')'; + \'' . PMA_sqlAddSlashes($GLOBALS['db']) . '\', + \'' . PMA_sqlAddSlashes(trim($tab)) . '\', + \'' . PMA_sqlAddSlashes(trim($inf[0])) . '\', + \'' . PMA_sqlAddSlashes(trim($inf[1])) . '\')'; PMA_importRunQuery($qry, $qry . '-- ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]), true); } // end inf[1] exists if (!empty($inf[2]) && strlen(trim($inf[2])) > 0) { @@ -81,12 +81,12 @@ ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['relation']) . ' (master_db, master_table, master_field, foreign_db, foreign_table, foreign_field) VALUES ( - \'' . PMA_sqlAddslashes($GLOBALS['db']) . '\', - \'' . PMA_sqlAddslashes(trim($tab)) . '\', - \'' . PMA_sqlAddslashes(trim($inf[0])) . '\', - \'' . PMA_sqlAddslashes($GLOBALS['db']) . '\', - \'' . PMA_sqlAddslashes(trim($for[0])) . '\', - \'' . PMA_sqlAddslashes(trim($for[1])) . '\')'; + \'' . PMA_sqlAddSlashes($GLOBALS['db']) . '\', + \'' . PMA_sqlAddSlashes(trim($tab)) . '\', + \'' . PMA_sqlAddSlashes(trim($inf[0])) . '\', + \'' . PMA_sqlAddSlashes($GLOBALS['db']) . '\', + \'' . PMA_sqlAddSlashes(trim($for[0])) . '\', + \'' . PMA_sqlAddSlashes(trim($for[1])) . '\')'; PMA_importRunQuery($qry, $qry . '-- ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]) . '(' . htmlspecialchars($inf[2]) . ')', true); } // end inf[2] exists } // End lines loop diff --git a/libraries/import/ldi.php b/libraries/import/ldi.php index 56dabf90d5bd..fe5264c3c765 100644 --- a/libraries/import/ldi.php +++ b/libraries/import/ldi.php @@ -63,7 +63,7 @@ if (isset($ldi_local_option)) { $sql .= ' LOCAL'; } -$sql .= ' INFILE \'' . PMA_sqlAddslashes($import_file) . '\''; +$sql .= ' INFILE \'' . PMA_sqlAddSlashes($import_file) . '\''; if (isset($ldi_replace)) { $sql .= ' REPLACE'; } elseif (isset($ldi_ignore)) { @@ -75,10 +75,10 @@ $sql .= ' FIELDS TERMINATED BY \'' . $ldi_terminated . '\''; } if (strlen($ldi_enclosed) > 0) { - $sql .= ' ENCLOSED BY \'' . PMA_sqlAddslashes($ldi_enclosed) . '\''; + $sql .= ' ENCLOSED BY \'' . PMA_sqlAddSlashes($ldi_enclosed) . '\''; } if (strlen($ldi_escaped) > 0) { - $sql .= ' ESCAPED BY \'' . PMA_sqlAddslashes($ldi_escaped) . '\''; + $sql .= ' ESCAPED BY \'' . PMA_sqlAddSlashes($ldi_escaped) . '\''; } if (strlen($ldi_new_line) > 0){ if ($ldi_new_line == 'auto') { diff --git a/libraries/js_escape.lib.php b/libraries/js_escape.lib.php index 0773eecce10d..f7e8fb3a4213 100644 --- a/libraries/js_escape.lib.php +++ b/libraries/js_escape.lib.php @@ -13,11 +13,6 @@ * This function is used to displays a javascript confirmation box for * "DROP/DELETE/ALTER" queries. * - * @uses PMA_escapeJsString() - * @uses PMA_backquote() - * @uses is_string() - * @uses htmlspecialchars() - * @uses str_replace() * @param string $a_string the string to format * @param boolean $add_backquotes whether to add backquotes to the string or not * @@ -47,8 +42,6 @@ function PMA_jsFormat($a_string = '', $add_backquotes = true) * We also remove NUL byte as some browsers (namely MSIE) ignore it and * inserting it anywhere inside bar * - * @uses preg_replace() - * @uses strtr() * @param string the message * @param boolean whether to escape html in result * diff --git a/libraries/schema/Dia_Relation_Schema.class.php b/libraries/schema/Dia_Relation_Schema.class.php index f6050c7c596f..bccf2147a1c5 100644 --- a/libraries/schema/Dia_Relation_Schema.class.php +++ b/libraries/schema/Dia_Relation_Schema.class.php @@ -184,8 +184,6 @@ function showOutput($fileName) * and helps in drawing/generating the Tables in dia XML document. * * @name Table_Stats - * @copyright - * @license * @see PMA_DIA */ class Table_Stats @@ -242,8 +240,8 @@ function __construct($tableName, $pageNumber, $showKeys = false) $sql = 'SELECT x, y FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\'' + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\'' . ' AND pdf_page_number = ' . $pageNumber; $result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE); if (!$result || !PMA_DBI_num_rows($result)) { @@ -435,8 +433,6 @@ public function tableDraw($changeColor) * in dia XML document. * * @name Relation_Stats - * @copyright - * @license * @see PMA_DIA */ class Relation_Stats @@ -636,8 +632,6 @@ public function relationDraw($changeColor) * to this class * * @name Dia_Relation_Schema - * @copyright - * @license */ class PMA_Dia_Relation_Schema extends PMA_Export_Relation_Schema { diff --git a/libraries/schema/Eps_Relation_Schema.class.php b/libraries/schema/Eps_Relation_Schema.class.php index ca8699a72f77..50ea7e3f27b2 100644 --- a/libraries/schema/Eps_Relation_Schema.class.php +++ b/libraries/schema/Eps_Relation_Schema.class.php @@ -347,8 +347,6 @@ function showOutput($fileName) * and helps in drawing/generating the Tables in EPS. * * @name Table_Stats - * @copyright - * @license * @see PMA_EPS */ class Table_Stats @@ -429,8 +427,8 @@ function __construct($tableName, $font, $fontSize, $pageNumber, &$same_wide_widt // x and y $sql = 'SELECT x, y FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\'' + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\'' . ' AND pdf_page_number = ' . $pageNumber; $result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE); @@ -550,8 +548,6 @@ public function tableDraw($showColor) * in EPS document. * * @name Relation_Stats - * @copyright - * @license * @see PMA_EPS */ class Relation_Stats @@ -715,8 +711,6 @@ public function relationDraw($changeColor) * to this class * * @name Eps_Relation_Schema - * @copyright - * @license */ class PMA_Eps_Relation_Schema extends PMA_Export_Relation_Schema { diff --git a/libraries/schema/Export_Relation_Schema.class.php b/libraries/schema/Export_Relation_Schema.class.php index 6c9cca7230e1..bfdb0636ba7b 100644 --- a/libraries/schema/Export_Relation_Schema.class.php +++ b/libraries/schema/Export_Relation_Schema.class.php @@ -162,7 +162,7 @@ public function getAllTables($db,$pageNumber) global $cfgRelation; // Get All tables $tab_sql = 'SELECT table_name FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' . ' AND pdf_page_number = ' . $pageNumber; $tab_rs = PMA_query_as_controluser($tab_sql, null, PMA_DBI_QUERY_STORE); @@ -170,7 +170,7 @@ public function getAllTables($db,$pageNumber) $this->dieSchema('',__('This page does not contain any tables!')); } while ($curr_table = @PMA_DBI_fetch_assoc($tab_rs)) { - $alltables[] = PMA_sqlAddslashes($curr_table['table_name']); + $alltables[] = PMA_sqlAddSlashes($curr_table['table_name']); } return $alltables; } diff --git a/libraries/schema/Pdf_Relation_Schema.class.php b/libraries/schema/Pdf_Relation_Schema.class.php index d0b8b6475147..4e89f0bd939d 100644 --- a/libraries/schema/Pdf_Relation_Schema.class.php +++ b/libraries/schema/Pdf_Relation_Schema.class.php @@ -219,7 +219,7 @@ function Header() global $cfgRelation, $db, $pdf_page_number, $with_doc; if ($with_doc) { $test_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' . ' AND page_nr = \'' . $pdf_page_number . '\''; $test_rs = PMA_query_as_controluser($test_query); $pages = @PMA_DBI_fetch_assoc($test_rs); @@ -438,8 +438,6 @@ function NbLines($w, $txt) * and helps in drawing/generating the Tables in PDF document. * * @name Table_Stats - * @copyright - * @license * @see PMA_PDF */ class Table_Stats @@ -512,8 +510,8 @@ function __construct($tableName, $fontSize, $pageNumber, &$sameWideWidth, $showK } $sql = 'SELECT x, y FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\'' + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\'' . ' AND pdf_page_number = ' . $pageNumber; $result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE); if (!$result || !PMA_DBI_num_rows($result)) { @@ -652,8 +650,6 @@ public function tableDraw($fontSize, $withDoc, $setColor = 0) * in PDF document. * * @name Relation_Stats - * @copyright - * @license * @see PMA_PDF::SetDrawColor,PMA_PDF::PMA_PDF_setLineWidthScale,PMA_PDF::PMA_PDF_lineScale */ class Relation_Stats @@ -797,8 +793,6 @@ public function relationDraw($changeColor, $i) * to this class * * @name Pdf_Relation_Schema - * @copyright - * @license */ class PMA_Pdf_Relation_Schema extends PMA_Export_Relation_Schema { diff --git a/libraries/schema/Svg_Relation_Schema.class.php b/libraries/schema/Svg_Relation_Schema.class.php index 03c8805b4560..c845efe9377e 100644 --- a/libraries/schema/Svg_Relation_Schema.class.php +++ b/libraries/schema/Svg_Relation_Schema.class.php @@ -317,8 +317,6 @@ function getStringWidth($text,$font,$fontSize) * and helps in drawing/generating the Tables in SVG XML document. * * @name Table_Stats - * @copyright - * @license * @see PMA_SVG */ class Table_Stats @@ -399,8 +397,8 @@ function __construct($tableName, $font, $fontSize, $pageNumber, &$same_wide_widt // x and y $sql = 'SELECT x, y FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\'' + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\'' . ' AND pdf_page_number = ' . $pageNumber; $result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE); @@ -527,8 +525,6 @@ public function tableDraw($showColor) * in SVG XML document. * * @name Relation_Stats - * @copyright - * @license * @see PMA_SVG::printElementLine */ class Relation_Stats @@ -691,8 +687,6 @@ public function relationDraw($changeColor) * to this class * * @name Svg_Relation_Schema - * @copyright - * @license */ class PMA_Svg_Relation_Schema extends PMA_Export_Relation_Schema { diff --git a/libraries/schema/User_Schema.class.php b/libraries/schema/User_Schema.class.php index b9aeff3b615b..acb8672ba8a2 100644 --- a/libraries/schema/User_Schema.class.php +++ b/libraries/schema/User_Schema.class.php @@ -134,7 +134,7 @@ public function selectPage() { global $db,$table,$query_default_option,$cfgRelation; $page_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''; + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''; $page_rs = PMA_query_as_controluser($page_query, false, $query_default_option); if ($page_rs && PMA_DBI_num_rows($page_rs) > 0) { ?> @@ -207,8 +207,8 @@ public function showTableDashBoard()

chosenPage) . '\''; + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($this->chosenPage) . '\''; $page_rs = PMA_query_as_controluser($page_query, false, $query_default_option); $array_sh_page = array(); while ($temp_sh_page = @PMA_DBI_fetch_assoc($page_rs)) { @@ -538,9 +538,9 @@ private function _deleteTableRows($delrow,$cfgRelation,$db,$chpage) { foreach ($delrow as $current_row) { $del_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' ' . "\n" - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' . "\n" - . ' AND table_name = \'' . PMA_sqlAddslashes($current_row) . '\'' . "\n" - . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($chpage) . '\''; + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' . "\n" + . ' AND table_name = \'' . PMA_sqlAddSlashes($current_row) . '\'' . "\n" + . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($chpage) . '\''; echo $del_query; PMA_query_as_controluser($del_query, false, $query_default_option); } @@ -583,8 +583,8 @@ private function _processExportSchema() public function deleteCoordinates($db, $cfgRelation, $choosePage, $query_default_option) { $query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($choosePage) . '\''; + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($choosePage) . '\''; PMA_query_as_controluser($query, false, $query_default_option); } @@ -600,8 +600,8 @@ public function deleteCoordinates($db, $cfgRelation, $choosePage, $query_default public function deletePages($db, $cfgRelation, $choosePage, $query_default_option) { $query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND page_nr = \'' . PMA_sqlAddslashes($choosePage) . '\''; + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND page_nr = \'' . PMA_sqlAddSlashes($choosePage) . '\''; PMA_query_as_controluser($query, false, $query_default_option); } @@ -732,7 +732,7 @@ public function addRelationCoordinates($all_tables,$pageNumber,$db, $cfgRelation */ $insert_query = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' ' . '(db_name, table_name, pdf_page_number, x, y) ' - . 'VALUES (\'' . PMA_sqlAddslashes($db) . '\', \'' . PMA_sqlAddslashes($current_table) . '\',' . $pageNumber . ',' . $pos_x . ',' . $pos_y . ')'; + . 'VALUES (\'' . PMA_sqlAddSlashes($db) . '\', \'' . PMA_sqlAddSlashes($current_table) . '\',' . $pageNumber . ',' . $pos_x . ',' . $pos_y . ')'; PMA_query_as_controluser($insert_query, false, $query_default_option); /* @@ -785,28 +785,28 @@ private function _editCoordinates($db, $cfgRelation,$query_default_option) } if (isset($arrvalue['name']) && $arrvalue['name'] != '--') { $test_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($arrvalue['name']) . '\'' - . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($this->chosenPage) . '\''; + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($arrvalue['name']) . '\'' + . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($this->chosenPage) . '\''; $test_rs = PMA_query_as_controluser($test_query, false, $query_default_option); //echo $test_query; if ($test_rs && PMA_DBI_num_rows($test_rs) > 0) { if (isset($arrvalue['delete']) && $arrvalue['delete'] == 'y') { $ch_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($arrvalue['name']) . '\'' - . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($this->chosenPage) . '\''; + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($arrvalue['name']) . '\'' + . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($this->chosenPage) . '\''; } else { $ch_query = 'UPDATE ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' ' . 'SET x = ' . $arrvalue['x'] . ', y= ' . $arrvalue['y'] - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($arrvalue['name']) . '\'' - . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($this->chosenPage) . '\''; + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($arrvalue['name']) . '\'' + . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($this->chosenPage) . '\''; } } else { $ch_query = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' ' . '(db_name, table_name, pdf_page_number, x, y) ' - . 'VALUES (\'' . PMA_sqlAddslashes($db) . '\', \'' . PMA_sqlAddslashes($arrvalue['name']) . '\', \'' . PMA_sqlAddslashes($this->chosenPage) . '\',' . $arrvalue['x'] . ',' . $arrvalue['y'] . ')'; + . 'VALUES (\'' . PMA_sqlAddSlashes($db) . '\', \'' . PMA_sqlAddSlashes($arrvalue['name']) . '\', \'' . PMA_sqlAddSlashes($this->chosenPage) . '\',' . $arrvalue['x'] . ',' . $arrvalue['y'] . ')'; } //echo $ch_query; PMA_query_as_controluser($ch_query, false, $query_default_option); diff --git a/libraries/schema/Visio_Relation_Schema.class.php b/libraries/schema/Visio_Relation_Schema.class.php index f8d17e8b2aec..011e73ef9060 100644 --- a/libraries/schema/Visio_Relation_Schema.class.php +++ b/libraries/schema/Visio_Relation_Schema.class.php @@ -243,8 +243,8 @@ function __construct($tableName, $pageNumber, &$same_wide_width, $showKeys = fal // x and y $sql = 'SELECT x, y FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\'' + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\'' . ' AND pdf_page_number = ' . $pageNumber; $result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE); @@ -469,8 +469,6 @@ public function relationDraw($changeColor) * to this class * * @name Visio_Relation_Schema - * @copyright - * @license */ class PMA_Visio_Relation_Schema extends PMA_Export_Relation_Schema { diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php index 85e182854791..7d1de467beb9 100644 --- a/libraries/select_lang.lib.php +++ b/libraries/select_lang.lib.php @@ -26,18 +26,6 @@ function PMA_langName($tmplang) { /** * tries to find the language to use * - * @uses $GLOBALS['cfg']['lang'] - * @uses $GLOBALS['cfg']['DefaultLang'] - * @uses $GLOBALS['lang_failed_cfg'] - * @uses $GLOBALS['lang_failed_cookie'] - * @uses $GLOBALS['lang_failed_request'] - * @uses $_REQUEST['lang'] - * @uses $_COOKIE['pma_lang'] - * @uses $_SERVER['HTTP_ACCEPT_LANGUAGE'] - * @uses $_SERVER['HTTP_USER_AGENT'] - * @uses PMA_langSet() - * @uses PMA_langDetect() - * @uses explode() * @return bool success if valid lang is found, otherwise false */ function PMA_langCheck() @@ -114,8 +102,6 @@ function PMA_langCheck() * checks given lang and sets it if valid * returns true on success, otherwise flase * - * @uses $GLOBALS['available_languages'] to check $lang - * @uses $GLOBALS['lang'] to set it * @param string $lang language to set * @return bool success */ @@ -140,7 +126,6 @@ function PMA_langSet(&$lang) * * @return bool true on success, otherwise false * - * @uses $GLOBALS['available_languages'] to check $lang * * @access private */ diff --git a/libraries/select_server.lib.php b/libraries/select_server.lib.php index f71f7cde0ce5..68541d8ce638 100644 --- a/libraries/select_server.lib.php +++ b/libraries/select_server.lib.php @@ -9,12 +9,6 @@ /** * display server selection in list or selectbox form, or option tags only * - * @uses $GLOBALS['cfg']['DisplayServersList'] - * @uses $GLOBALS['cfg']['Servers'] - * @uses implode() - * @uses htmlspecialchars() - * @uses PMA_generate_common_hidden_inputs() - * @uses PMA_generate_common_url() * @param boolean $not_only_options whether to include form tags or not * @param boolean $ommit_fieldset whether to ommit fieldset tag or not */ diff --git a/libraries/server_common.inc.php b/libraries/server_common.inc.php index 732017679ba0..54390110632a 100644 --- a/libraries/server_common.inc.php +++ b/libraries/server_common.inc.php @@ -1,12 +1,6 @@ $value) { - $insert_query .= "'" . PMA_sqlAddslashes($value) . "'"; + $insert_query .= "'" . PMA_sqlAddSlashes($value) . "'"; if ($key < $key_of_last_value) { $insert_query .= ","; } @@ -695,9 +677,6 @@ function PMA_populateTargetTables($src_db, $trg_db, $src_link, $trg_link, $uncom } /** * PMA_deleteFromTargetTable() delete rows from target table -* @uses sizeof() -* @uses PMA_backquote() -* @uses PMA_DBI_try_query() * * * @param $trg_db name of target database @@ -755,8 +734,6 @@ function PMA_deleteFromTargetTable($trg_db, $trg_link, $matching_tables, $table_ * Keys for all the source tables that have a corresponding target table are placed in $matching_tables_keys. * Keys for all the target tables that have a corresponding source table are placed in $target_tables_keys. * -* @uses PMA_DBI_get_columns_full() -* @uses sizeof() * * @param $src_db name of source database * @param $trg_db name of target database @@ -820,13 +797,6 @@ function PMA_structureDiffInTables($src_db, $trg_db, $src_link, $trg_link, $matc } /** * PMA_addColumnsInTargetTable() adds column that are present in source table but not in target table -* @uses sizeof() -* @uses in_array() -* @uses array_keys() -* @uses PMA_checkForeignKeys() -* @uses PMA_createTargetTables() -* @uses PMA_DBI_try_query() -* @uses PMA_DBI_fetch_result() * * @param $src_db name of source database * @param $trg_db name of target database @@ -924,10 +894,6 @@ function PMA_addColumnsInTargetTable($src_db, $trg_db, $src_link, $trg_link, $ma } /** * PMA_checkForeignKeys() checks if the referenced table have foreign keys. -* @uses sizeof() -* @uses in_array() -* @uses array_keys() -* @uses PMA_checkForeignKeys() * uses PMA_createTargetTables() * * @param $src_db name of source database @@ -959,11 +925,6 @@ function PMA_checkForeignKeys($src_db, $src_link, $trg_db, $trg_link ,$reference } /** * PMA_alterTargetTableStructure() alters structure of the target table using $alter_str_array -* @uses sizeof() -* @uses PMA_DBI_fetch_result() -* @uses is_string() -* @uses is_numeric() -* @uses PMA_DBI_try_query() * * * @param $trg_db name of target database @@ -1099,9 +1060,6 @@ function PMA_alterTargetTableStructure($trg_db, $trg_link, $matching_tables, &$s /** * PMA_removeColumnsFromTargetTable() removes the columns which are present in target table but not in source table. -* @uses sizeof() -* @uses PMA_DBI_try_query() -* @uses PMA_DBI_fetch_result() * * @param $trg_db name of target database * @param $trg_link connection established with target server @@ -1222,8 +1180,6 @@ function PMA_indexesDiffInTables($src_db, $trg_db, $src_link, $trg_link, $matchi /** * PMA_applyIndexesDiff() create indexes, alters indexes and remove indexes. -* @uses sizeof() -* @uses PMA_DBI_try_query() * * @param $trg_db name of target database * @param $trg_link connection established with target server @@ -1311,7 +1267,6 @@ function PMA_applyIndexesDiff ($trg_db, $trg_link, $matching_tables, $source_ind /** * PMA_displayQuery() displays a query, taking the maximum display size * into account - * @uses $GLOBALS['cfg']['MaxCharactersInDisplayedSQL'] * * @param $query the query to display */ @@ -1324,8 +1279,6 @@ function PMA_displayQuery($query) { /** * PMA_syncDisplayHeaderSource() shows the header for source database - * @uses $_SESSION['src_type'] - * @uses $_SESSION['src_server']['host'] * * @param string $src_db source db name */ @@ -1347,8 +1300,6 @@ function PMA_syncDisplayHeaderSource($src_db) { /** * PMA_syncDisplayHeaderTargetAndMatchingTables() shows the header for target database and the matching tables - * @uses $_SESSION['trg_type'] - * @uses $_SESSION['trg_server']['host'] * * @param string $trg_db target db name * @param array $matching_tables diff --git a/libraries/session.inc.php b/libraries/session.inc.php index 465e3f033208..a829172c919a 100644 --- a/libraries/session.inc.php +++ b/libraries/session.inc.php @@ -6,9 +6,6 @@ * @todo add failover or warn if sessions are not configured properly * @todo add an option to use mm-module for session handler * @see http://www.php.net/session - * @uses session_name() - * @uses session_start() - * @uses ini_set() * @package phpMyAdmin */ if (! defined('PHPMYADMIN')) { @@ -104,7 +101,6 @@ * should be called before login and after successfull login * (only required if sensitive information stored in session) * - * @uses session_regenerate_id() to secure session from fixation */ function PMA_secureSession() { diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php index 5dd48d29726d..13d866e5fb9c 100644 --- a/libraries/sql_query_form.lib.php +++ b/libraries/sql_query_form.lib.php @@ -30,32 +30,6 @@ * @usedby tbl_structure.php * @usedby tbl_tracking.php * @usedby querywindow.php - * @uses $GLOBALS['table'] - * @uses $GLOBALS['db'] - * @uses $GLOBALS['server'] - * @uses $GLOBALS['goto'] - * @uses $GLOBALS['is_upload'] from common.inc.php - * @uses $GLOBALS['sql_query'] from grab_globals.lib.php - * @uses $GLOBALS['cfg']['DefaultQueryTable'] - * @uses $GLOBALS['cfg']['DefaultQueryDatabase'] - * @uses $GLOBALS['cfg']['Servers'] - * @uses $GLOBALS['cfg']['DefaultTabDatabase'] - * @uses $GLOBALS['cfg']['Bookmark'] - * @uses PMA_generate_common_url() - * @uses PMA_backquote() - * @uses PMA_DBI_fetch_result() - * @uses PMA_showMySQLDocu() - * @uses PMA_generate_common_hidden_inputs() - * @uses PMA_sqlQueryFormBookmark() - * @uses PMA_sqlQueryFormInsert() - * @uses PMA_sqlQueryFormUpload() - * @uses PMA_DBI_QUERY_STORE - * @uses PMA_set_enc_form() - * @uses sprintf() - * @uses htmlspecialchars() - * @uses str_replace() - * @uses md5() - * @uses function_exists() * @param boolean|string $query query to display in the textarea * or true to display last executed * @param boolean|string $display_tab sql|files|history|full|false @@ -183,14 +157,6 @@ function PMA_sqlQueryForm($query = true, $display_tab = false, $delimiter = ';') * prints querybox fieldset * * @usedby PMA_sqlQueryForm() - * @uses $GLOBALS['text_dir'] - * @uses $GLOBALS['cfg']['TextareaAutoSelect'] - * @uses $GLOBALS['cfg']['TextareaCols'] - * @uses $GLOBALS['cfg']['TextareaRows'] - * @uses PMA_USR_OS - * @uses PMA_USR_BROWSER_AGENT - * @uses PMA_USR_BROWSER_VER - * @uses htmlspecialchars() * @param string $query query to display in the textarea * @param boolean $is_querywindow if inside querywindow or not * @param string $delimiter default delimiter to use @@ -391,12 +357,6 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter * prints bookmark fieldset * * @usedby PMA_sqlQueryForm() - * @uses PMA_Bookmark_getList() - * @uses $GLOBALS['db'] - * @uses $GLOBALS['pmaThemeImage'] - * @uses $GLOBALS['cfg']['ReplaceHelpImg'] - * @uses count() - * @uses htmlspecialchars() */ function PMA_sqlQueryFormBookmark() { @@ -460,18 +420,6 @@ function PMA_sqlQueryFormBookmark() * prints bookmark fieldset * * @usedby PMA_sqlQueryForm() - * @uses $GLOBALS['cfg']['GZipDump'] - * @uses $GLOBALS['cfg']['BZipDump'] - * @uses $GLOBALS['cfg']['UploadDir'] - * @uses $GLOBALS['cfg']['AvailableCharsets'] - * @uses $GLOBALS['max_upload_size'] - * @uses PMA_supportedDecompressions() - * @uses PMA_getFileSelectOptions() - * @uses PMA_displayMaximumUploadSize() - * @uses PMA_generateCharsetDropdownBox() - * @uses PMA_generateHiddenMaxFileSize() - * @uses PMA_CSDROPDOWN_CHARSET - * @uses empty() */ function PMA_sqlQueryFormUpload(){ $errors = array (); diff --git a/libraries/string.lib.php b/libraries/string.lib.php index 6c45a2270ce5..6e2d26d6fd91 100644 --- a/libraries/string.lib.php +++ b/libraries/string.lib.php @@ -12,11 +12,6 @@ * * The SQL Parser code relies heavily on these functions. * - * @uses extension_loaded() - * @uses substr() - * @uses function_exists() - * @uses mb_internal_encoding() - * @uses defined() * @todo a .lib filename should not have code in main(), split or rename file * @package phpMyAdmin */ @@ -62,10 +57,6 @@ /** * Checks if a given character position in the string is escaped or not * - * @uses PMA_strlen() - * @uses PMA_substr() - * @uses max() - * @uses intval() * @param string string to check for * @param integer the character to check for * @param integer starting position in the string @@ -110,7 +101,6 @@ function PMA_STR_numberInRangeInclusive($num, $lower, $upper) /** * Checks if a character is an SQL identifier * - * @uses PMA_STR_isAlnum() * @param string character to check for * @param boolean whether the dot character is valid or not * @return boolean whether the character is an SQL identifier or not diff --git a/libraries/string_type_ctype.lib.php b/libraries/string_type_ctype.lib.php index b211dd59c368..590e59da0f7e 100644 --- a/libraries/string_type_ctype.lib.php +++ b/libraries/string_type_ctype.lib.php @@ -18,7 +18,6 @@ /** * Checks if a character is an alphanumeric one * - * @uses ctype_alnum() * @param string character to check for * @return boolean whether the character is an alphanumeric one or not */ @@ -30,7 +29,6 @@ function PMA_STR_isAlnum($c) /** * Checks if a character is an alphabetic one * - * @uses ctype_alpha() * @param string character to check for * @return boolean whether the character is an alphabetic one or not */ @@ -42,7 +40,6 @@ function PMA_STR_isAlpha($c) /** * Checks if a character is a digit * - * @uses ctype_digit() * @param string character to check for * @return boolean whether the character is a digit or not */ @@ -54,7 +51,6 @@ function PMA_STR_isDigit($c) /** * Checks if a character is an upper alphabetic one * - * @uses ctype_upper() * @param string character to check for * @return boolean whether the character is an upper alphabetic one or not */ @@ -67,7 +63,6 @@ function PMA_STR_isUpper($c) /** * Checks if a character is a lower alphabetic one * - * @uses ctype_lower() * @param string character to check for * @return boolean whether the character is a lower alphabetic one or not */ @@ -79,7 +74,6 @@ function PMA_STR_isLower($c) /** * Checks if a character is a space one * - * @uses ctype_space() * @param string character to check for * @return boolean whether the character is a space one or not */ @@ -91,7 +85,6 @@ function PMA_STR_isSpace($c) /** * Checks if a character is an hexadecimal digit * - * @uses ctype_xdigit() * @param string character to check for * @return boolean whether the character is an hexadecimal digit or not */ diff --git a/libraries/string_type_native.lib.php b/libraries/string_type_native.lib.php index a2c7f0e204dc..0bcb08fc3a00 100644 --- a/libraries/string_type_native.lib.php +++ b/libraries/string_type_native.lib.php @@ -18,9 +18,6 @@ /** * Checks if a character is an alphanumeric one * - * @uses PMA_STR_isUpper() - * @uses PMA_STR_isLower() - * @uses PMA_STR_isDigit() * @param string character to check for * @return boolean whether the character is an alphanumeric one or not */ @@ -32,8 +29,6 @@ function PMA_STR_isAlnum($c) /** * Checks if a character is an alphabetic one * - * @uses PMA_STR_isUpper() - * @uses PMA_STR_isLower() * @param string character to check for * @return boolean whether the character is an alphabetic one or not */ @@ -45,8 +40,6 @@ function PMA_STR_isAlpha($c) /** * Checks if a character is a digit * - * @uses PMA_STR_numberInRangeInclusive() - * @uses ord() * @param string character to check for * @return boolean whether the character is a digit or not */ @@ -62,8 +55,6 @@ function PMA_STR_isDigit($c) /** * Checks if a character is an upper alphabetic one * - * @uses PMA_STR_numberInRangeInclusive() - * @uses ord() * @param string character to check for * @return boolean whether the character is an upper alphabetic one or not */ @@ -79,8 +70,6 @@ function PMA_STR_isUpper($c) /** * Checks if a character is a lower alphabetic one * - * @uses PMA_STR_numberInRangeInclusive() - * @uses ord() * @param string character to check for * @return boolean whether the character is a lower alphabetic one or not */ @@ -96,8 +85,6 @@ function PMA_STR_isLower($c) /** * Checks if a character is a space one * - * @uses PMA_STR_numberInRangeInclusive() - * @uses ord() * @param string character to check for * @return boolean whether the character is a space one or not */ @@ -117,8 +104,6 @@ function PMA_STR_isSpace($c) /** * Checks if a character is an hexadecimal digit * - * @uses PMA_STR_numberInRangeInclusive() - * @uses ord() * @param string character to check for * @return boolean whether the character is an hexadecimal digit or not */ diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php index e1d98c895bae..32da9c085dc2 100644 --- a/libraries/tbl_replace_fields.inc.php +++ b/libraries/tbl_replace_fields.inc.php @@ -18,15 +18,6 @@ * note: grab_globals has extracted the fields from _FILES or HTTP_POST_FILES * * - * @uses $_REQUEST - * @uses defined() - * @uses define() - * @uses bin2hex() - * @uses strlen() - * @uses md5() - * @uses implode() - * @uses PMA_NO_VARIABLES_IMPORT - * @uses PMA_sqlAddslashes() * @package phpMyAdmin */ if (! defined('PHPMYADMIN')) { @@ -78,7 +69,7 @@ } elseif ($type == 'set') { if (! empty($_REQUEST['fields']['multi_edit'][$rownumber][$key])) { $val = implode(',', $_REQUEST['fields']['multi_edit'][$rownumber][$key]); - $val = "'" . PMA_sqlAddslashes($val) . "'"; + $val = "'" . PMA_sqlAddSlashes($val) . "'"; } } elseif ($type == 'protected') { // here we are in protected mode (asked in the config) @@ -96,9 +87,9 @@ } } elseif ($type == 'bit') { $val = preg_replace('/[^01]/', '0', $val); - $val = "b'" . PMA_sqlAddslashes($val) . "'"; + $val = "b'" . PMA_sqlAddSlashes($val) . "'"; } elseif (! (($type == 'datetime' || $type == 'timestamp') && $val == 'CURRENT_TIMESTAMP')) { - $val = "'" . PMA_sqlAddslashes($val) . "'"; + $val = "'" . PMA_sqlAddSlashes($val) . "'"; } // Was the Null checkbox checked for this field? diff --git a/libraries/transformations.lib.php b/libraries/transformations.lib.php index 7148003b531e..e58ecf8bc1aa 100644 --- a/libraries/transformations.lib.php +++ b/libraries/transformations.lib.php @@ -19,14 +19,6 @@ * // } * * - * @uses preg_split() - * @uses array_shift() - * @uses trim() - * @uses rtrim() - * @uses ltrim() - * @uses strlen() - * @uses substr() - * @uses stripslashes() * @param string $option_string comma separated options * @return array options */ @@ -70,13 +62,6 @@ function PMA_transformation_getOptions($option_string) * Gets all available MIME-types * * @access public - * @uses opendir() - * @uses readdir() - * @uses closedir() - * @uses sort() - * @uses preg_match() - * @uses explode() - * @uses str_replace() * @staticvar array mimetypes * @return array array[mimetype], array[transformation] */ @@ -132,11 +117,6 @@ function PMA_getAvailableMIMEtypes() /** * Gets the mimetypes for all columns of a table * - * @uses $GLOBALS['controllink'] - * @uses PMA_getRelationsParam() - * @uses PMA_backquote() - * @uses PMA_sqlAddslashes() - * @uses PMA_DBI_fetch_result() * @access public * @param string $db the name of the db to check for * @param string $table the name of the table to check for @@ -157,8 +137,8 @@ function PMA_getMIME($db, $table, $strict = false) `transformation`, `transformation_options` FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . ' - WHERE `db_name` = \'' . PMA_sqlAddslashes($db) . '\' - AND `table_name` = \'' . PMA_sqlAddslashes($table) . '\' + WHERE `db_name` = \'' . PMA_sqlAddSlashes($db) . '\' + AND `table_name` = \'' . PMA_sqlAddSlashes($table) . '\' AND ( `mimetype` != \'\'' . (!$strict ? ' OR `transformation` != \'\' OR `transformation_options` != \'\'' : '') . ')'; @@ -168,15 +148,6 @@ function PMA_getMIME($db, $table, $strict = false) /** * Set a single mimetype to a certain value. * - * @uses PMA_DBI_QUERY_STORE - * @uses PMA_getRelationsParam() - * @uses PMA_backquote() - * @uses PMA_sqlAddslashes() - * @uses PMA_query_as_controluser() - * @uses PMA_DBI_num_rows() - * @uses PMA_DBI_fetch_assoc() - * @uses PMA_DBI_free_result() - * @uses strlen() * @access public * @param string $db the name of the db * @param string $table the name of the table @@ -200,9 +171,9 @@ function PMA_setMIME($db, $table, $key, $mimetype, $transformation, SELECT `mimetype`, `comment` FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . ' - WHERE `db_name` = \'' . PMA_sqlAddslashes($db) . '\' - AND `table_name` = \'' . PMA_sqlAddslashes($table) . '\' - AND `column_name` = \'' . PMA_sqlAddslashes($key) . '\''; + WHERE `db_name` = \'' . PMA_sqlAddSlashes($db) . '\' + AND `table_name` = \'' . PMA_sqlAddSlashes($table) . '\' + AND `column_name` = \'' . PMA_sqlAddSlashes($key) . '\''; $test_rs = PMA_query_as_controluser($test_qry, true, PMA_DBI_QUERY_STORE); if ($test_rs && PMA_DBI_num_rows($test_rs) > 0) { @@ -214,27 +185,27 @@ function PMA_setMIME($db, $table, $key, $mimetype, $transformation, || strlen($transformation_options) || strlen($row['comment']))) { $upd_query = ' UPDATE ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . ' - SET `mimetype` = \'' . PMA_sqlAddslashes($mimetype) . '\', - `transformation` = \'' . PMA_sqlAddslashes($transformation) . '\', - `transformation_options` = \'' . PMA_sqlAddslashes($transformation_options) . '\''; + SET `mimetype` = \'' . PMA_sqlAddSlashes($mimetype) . '\', + `transformation` = \'' . PMA_sqlAddSlashes($transformation) . '\', + `transformation_options` = \'' . PMA_sqlAddSlashes($transformation_options) . '\''; } else { $upd_query = 'DELETE FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']); } $upd_query .= ' - WHERE `db_name` = \'' . PMA_sqlAddslashes($db) . '\' - AND `table_name` = \'' . PMA_sqlAddslashes($table) . '\' - AND `column_name` = \'' . PMA_sqlAddslashes($key) . '\''; + WHERE `db_name` = \'' . PMA_sqlAddSlashes($db) . '\' + AND `table_name` = \'' . PMA_sqlAddSlashes($table) . '\' + AND `column_name` = \'' . PMA_sqlAddSlashes($key) . '\''; } elseif (strlen($mimetype) || strlen($transformation) || strlen($transformation_options)) { $upd_query = 'INSERT INTO ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . ' (db_name, table_name, column_name, mimetype, transformation, transformation_options) ' . ' VALUES(' - . '\'' . PMA_sqlAddslashes($db) . '\',' - . '\'' . PMA_sqlAddslashes($table) . '\',' - . '\'' . PMA_sqlAddslashes($key) . '\',' - . '\'' . PMA_sqlAddslashes($mimetype) . '\',' - . '\'' . PMA_sqlAddslashes($transformation) . '\',' - . '\'' . PMA_sqlAddslashes($transformation_options) . '\')'; + . '\'' . PMA_sqlAddSlashes($db) . '\',' + . '\'' . PMA_sqlAddSlashes($table) . '\',' + . '\'' . PMA_sqlAddSlashes($key) . '\',' + . '\'' . PMA_sqlAddSlashes($mimetype) . '\',' + . '\'' . PMA_sqlAddSlashes($transformation) . '\',' + . '\'' . PMA_sqlAddSlashes($transformation_options) . '\')'; } if (isset($upd_query)){ diff --git a/libraries/url_generating.lib.php b/libraries/url_generating.lib.php index 069e4b439b9d..c8b343b6f123 100644 --- a/libraries/url_generating.lib.php +++ b/libraries/url_generating.lib.php @@ -10,7 +10,6 @@ * Generates text with hidden inputs. * * @see PMA_generate_common_url() - * @uses PMA_getHiddenFields * @param string optional database name * (can also be an array of parameters) * @param string optional table name @@ -161,19 +160,6 @@ function PMA_getHiddenFields($values, $pre = '') * // script.php?server=1&lang=en * * - * @uses $GLOBALS['server'] - * @uses $GLOBALS['cfg']['ServerDefault'] - * @uses $_COOKIE['pma_lang'] - * @uses $GLOBALS['lang'] - * @uses $_COOKIE['pma_collation_connection'] - * @uses $GLOBALS['collation_connection'] - * @uses $_SESSION[' PMA_token '] - * @uses PMA_get_arg_separator() - * @uses is_array() - * @uses strlen() - * @uses htmlentities() - * @uses urlencode() - * @uses implode() * @param mixed assoc. array with url params or optional string with database name * if first param is an array there is also an ? prefixed to the url * @@ -270,9 +256,6 @@ function PMA_generate_common_url() * extracted from arg_separator.input as set in php.ini * we do not use arg_separator.output to avoid problems with & and & * - * @uses ini_get() - * @uses strpos() - * @uses strlen() * @param string whether to encode separator or not, currently 'none' or 'html' * @return string character used for separating url parts usally ; or & * @access public diff --git a/libraries/user_preferences.lib.php b/libraries/user_preferences.lib.php index 3fb8c1b1d17b..2246a4df8fcf 100644 --- a/libraries/user_preferences.lib.php +++ b/libraries/user_preferences.lib.php @@ -9,12 +9,6 @@ /** * Common initialization for user preferences modification pages * - * @uses ConfigFile::getInstance() - * @uses ConfigFile::resetConfigData() - * @uses ConfigFile::setAllowedKeys() - * @uses ConfigFile::setCfgUpdateReadMapping() - * @uses ConfigFile::updateWithGlobalConfig() - * @uses PMA_read_userprefs_fieldnames() */ function PMA_userprefs_pageinit() { @@ -36,14 +30,6 @@ function PMA_userprefs_pageinit() * * mtime - last modification time * * type - 'db' (config read from pmadb) or 'session' (read from user session) * - * @uses $_SESSION['userconfig'] - * @uses $GLOBALS['controllink'] - * @uses PMA_array_merge_recursive - * @uses PMA_backquote() - * @uses PMA_DBI_fetch_single_row() - * @uses PMA_getRelationsParam() - * @uses PMA_sqlAddslashes() - * @uses $GLOBALS['controllink'] * @return array */ function PMA_load_userprefs() @@ -66,7 +52,7 @@ function PMA_load_userprefs() $query = ' SELECT `config_data`, UNIX_TIMESTAMP(`timevalue`) ts FROM ' . $query_table . ' - WHERE `username` = \'' . PMA_sqlAddslashes($cfgRelation['user']) . '\''; + WHERE `username` = \'' . PMA_sqlAddSlashes($cfgRelation['user']) . '\''; $row = PMA_DBI_fetch_single_row($query, 'ASSOC', $GLOBALS['controllink']); return array( @@ -78,22 +64,6 @@ function PMA_load_userprefs() /** * Saves user preferences * - * @uses $_SESSION['cache'][...]['userprefs'] - * @uses $_SESSION['userconfig'] - * @uses $GLOBALS['cfg']['ServerDefault'] - * @uses $GLOBALS['controllink'] - * @uses $GLOBALS['server'] - * @uses ConfigFile::getConfigArray() - * @uses ConfigFile::getInstance() - * @uses PMA_backquote() - * @uses PMA_DBI_fetch_value - * @uses PMA_DBI_getError() - * @uses PMA_DBI_try_query() - * @uses PMA_Message::addMessage() - * @uses PMA_Message::error() - * @uses PMA_Message::rawError() - * @uses PMA_sqlAddslashes() - * @uses PMA_getRelationsParam() * @param array $config_data * @return true|PMA_Message */ @@ -120,20 +90,20 @@ function PMA_save_userprefs(array $config_array) $query = ' SELECT `username` FROM ' . $query_table . ' - WHERE `username` = \'' . PMA_sqlAddslashes($cfgRelation['user']) . '\''; + WHERE `username` = \'' . PMA_sqlAddSlashes($cfgRelation['user']) . '\''; $has_config = PMA_DBI_fetch_value($query, 0, 0, $GLOBALS['controllink']); $config_data = json_encode($config_array); if ($has_config) { $query = ' UPDATE ' . $query_table . ' - SET `config_data` = \'' . PMA_sqlAddslashes($config_data) . '\' - WHERE `username` = \'' . PMA_sqlAddslashes($cfgRelation['user']) . '\''; + SET `config_data` = \'' . PMA_sqlAddSlashes($config_data) . '\' + WHERE `username` = \'' . PMA_sqlAddSlashes($cfgRelation['user']) . '\''; } else { $query = ' INSERT INTO ' . $query_table . ' (`username`, `config_data`) - VALUES (\'' . PMA_sqlAddslashes($cfgRelation['user']) . '\', - \'' . PMA_sqlAddslashes($config_data) . '\')'; + VALUES (\'' . PMA_sqlAddSlashes($cfgRelation['user']) . '\', + \'' . PMA_sqlAddSlashes($config_data) . '\')'; } if (isset($_SESSION['cache'][$cache_key]['userprefs'])) { unset($_SESSION['cache'][$cache_key]['userprefs']); @@ -151,8 +121,6 @@ function PMA_save_userprefs(array $config_array) * Returns a user preferences array filtered by $cfg['UserprefsDisallow'] * (blacklist) and keys from user preferences form (whitelist) * - * @uses PMA_array_write() - * @uses PMA_read_userprefs_fieldnames() * @param array $config_data path => value pairs * @return array */ @@ -217,8 +185,6 @@ function PMA_read_userprefs_fieldnames(array $forms = null) * * No validation is done! * - * @uses PMA_load_userprefs() - * @uses PMA_save_userprefs() * @param string $cfg_name * @param mixed $value * @return void @@ -241,10 +207,6 @@ function PMA_persist_option($path, $value, $default_value) /** * Redirects after saving new user preferences * - * @uses ConfigFile::getConfigArray() - * @uses ConfigFile::getInstance() - * @uses PMA_generate_common_url() - * @uses PMA_sendHeaderLocation() * @param array $forms * @param array $old_settings * @param string $file_name @@ -287,9 +249,6 @@ function PMA_userprefs_redirect(array $forms, array $old_settings, $file_name, $ /** * Shows form which allows to quickly load settings stored in browser's local storage * - * @uses $_REQUEST['prefs_autoload'] - * @uses $_SESSION['userprefs_autoload'] - * @uses PMA_generate_common_hidden_inputs() */ function PMA_userprefs_autoload_header() { diff --git a/navigation.php b/navigation.php index 673d49d9e218..17aec64dea00 100644 --- a/navigation.php +++ b/navigation.php @@ -4,34 +4,6 @@ * the navigation frame - displays server, db and table selection tree * * @package phpMyAdmin - * @uses $GLOBALS['pma']->databases - * @uses $GLOBALS['server'] - * @uses $GLOBALS['db'] - * @uses $GLOBALS['table'] - * @uses $GLOBALS['available_languages'] - * @uses $GLOBALS['lang'] - * @uses $GLOBALS['text_dir'] - * @uses $GLOBALS['pmaThemeImage'] - * @uses $GLOBALS['cfg']['LeftFrameLight'] - * @uses $GLOBALS['cfg']['ShowTooltip'] - * @uses $GLOBALS['cfg']['ShowTooltipAliasDB'] - * @uses $GLOBALS['cfg']['DefaultTabDatabase'] - * @uses $GLOBALS['cfgRelation']['commwork']) { - * @uses PMA_List_Database::getSingleItem() - * @uses PMA_List_Database::getHtmlSelectGrouped() - * @uses PMA_List_Database::getGroupedDetails() - * @uses PMA_generate_common_url() - * @uses PMA_generate_common_hidden_inputs() - * @uses PMA_getDbComment(); - * @uses PMA_getTableCount() - * @uses PMA_getTableList() - * @uses PMA_getRelationsParam() - * @uses PMA_outBufferPre() - * @uses strlen() - * @uses session_write_close() - * @uses is_array() - * @uses implode() - * @uses htmlspecialchars() */ /** @@ -42,8 +14,6 @@ /** * finish and cleanup navigation.php script execution, only to be used in navigation.php * - * @uses $GLOBALS['controllink'] to close it - * @uses $GLOBALS['userlink'] to close it * @access private */ function PMA_exitNavigationFrame() @@ -354,15 +324,6 @@ function PMA_exitNavigationFrame() /** * displays collapsable db list * - * @uses $_REQUEST['dbgroup'] - * @uses $GLOBALS['cfg']['DefaultTabDatabase'] - * @uses strpos() - * @uses urlencode() - * @uses printf() - * @uses htmlspecialchars() - * @uses PMA_generate_common_url() - * @uses PMA_getTableList() - * @uses PMA_displayTableList() * @global integer $element_counter * @global string $img_minus * @global string $img_plus @@ -532,22 +493,6 @@ function PMA_displayDbList($ext_dblist, $offset, $count) { * calls itself recursively if table in given list * is a list itself * - * @uses is_array() - * @uses count() - * @uses urlencode() - * @uses strpos() - * @uses printf() - * @uses htmlspecialchars() - * @uses strlen() - * @uses is_array() - * @uses PMA_displayTableList() - * @uses $_REQUEST['tbl_group'] - * @uses $GLOBALS['common_url_query'] - * @uses $GLOBALS['table'] - * @uses $GLOBALS['pmaThemeImage'] - * @uses $GLOBALS['cfg']['LeftFrameTableSeparator'] - * @uses $GLOBALS['cfg']['DefaultTabDatabase'] - * @uses $GLOBALS['cfg']['DefaultTabTable'] * @global integer the element counter * @global string html code for '-' image * @global string html code for '+' image diff --git a/pmd_common.php b/pmd_common.php index 951db5559f68..783f6fa3c49f 100644 --- a/pmd_common.php +++ b/pmd_common.php @@ -23,16 +23,6 @@ /** * retrieves table info and stores it in $GLOBALS['PMD'] * - * @uses $GLOBALS['script_display_field'] - * @uses $GLOBALS['PMD'] to fill it - * @uses $GLOBALS['db'] - * @uses PMA_DBI_get_tables_full() - * @uses PMA_DBI_select_db() - * @uses PMA_getDisplayField() - * @uses urlencode() - * @uses htmlspecialchars() - * @uses strtoupper() - * @uses urlencode() */ function get_tabs() { @@ -78,13 +68,6 @@ function get_tabs() /** * retrieves table column info * - * @uses $GLOBALS['db'] - * @uses PMA_DBI_QUERY_STORE - * @uses PMA_DBI_select_db() - * @uses PMA_DBI_query() - * @uses PMA_DBI_num_rows() - * @uses PMA_backquote() - * @uses count() * @return array table column nfo */ function get_tab_info() @@ -108,16 +91,6 @@ function get_tab_info() /** * returns JavaScript code for intializing vars * - * @uses $GLOBALS['db'] - * @uses PMA_DBI_QUERY_STORE - * @uses PMA_DBI_select_db() - * @uses PMA_DBI_query() - * @uses PMA_backquote() - * @uses PMA_DBI_fetch_row() - * @uses PMA_getForeigners() - * @uses urlencode() - * @uses count() - * @uses in_array() * @return string JavaScript code */ function get_script_contr() @@ -184,7 +157,6 @@ function get_script_contr() } /** - * @uses get_all_keys() * @return array unique or primary indizes */ function get_pk_or_unique_keys() @@ -195,10 +167,6 @@ function get_pk_or_unique_keys() /** * returns all indizes * - * @uses $GLOBALS['PMD'] - * @uses PMA_Index::getFromTable() - * @uses PMA_Index->isUnique() - * @uses PMA_Index->getColumns() * @param boolean whether to include ony unique ones * @return array indizes */ @@ -227,9 +195,6 @@ function get_all_keys($unique_only = false) /** * * - * @uses $GLOBALS['PMD'] - * @uses count() - * @uses in_array() * @return array ??? */ function get_script_tabs() @@ -251,15 +216,6 @@ function get_script_tabs() } /** - * @uses $GLOBALS['controllink'] - * @uses $cfgRelation['designerwork'] - * @uses $cfgRelation['db'] - * @uses $cfgRelation['designer_coords'] - * @uses PMA_DBI_QUERY_STORE - * @uses PMA_getRelationsParam() - * @uses PMA_backquote() - * @uses PMA_DBI_fetch_result() - * @uses count() * @return array table positions and sizes */ function get_tab_pos() @@ -284,9 +240,6 @@ function get_tab_pos() /** * returns distinct values from $GLOBALS['PMD']['OWNER'] * - * @uses array_values() - * @uses array_unique() - * @uses $GLOBALS['PMD']['OWNER'] * @return array owner */ function get_owners() diff --git a/pmd_display_field.php b/pmd_display_field.php index 21ef7f26ce90..0e51cd70c376 100644 --- a/pmd_display_field.php +++ b/pmd_display_field.php @@ -19,21 +19,21 @@ if ($disp) { if ($display_field != $disp) { $upd_query = 'UPDATE ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_info']) - . ' SET display_field = \'' . PMA_sqlAddslashes($display_field) . '\'' - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($table) . '\''; + . ' SET display_field = \'' . PMA_sqlAddSlashes($display_field) . '\'' + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($table) . '\''; } else { $upd_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_info']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' - . ' AND table_name = \'' . PMA_sqlAddslashes($table) . '\''; + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' + . ' AND table_name = \'' . PMA_sqlAddSlashes($table) . '\''; } } elseif ($display_field != '') { $upd_query = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_info']) . '(db_name, table_name, display_field) ' . ' VALUES(' - . '\'' . PMA_sqlAddslashes($db) . '\',' - . '\'' . PMA_sqlAddslashes($table) . '\',' - . '\'' . PMA_sqlAddslashes($display_field) . '\')'; + . '\'' . PMA_sqlAddSlashes($db) . '\',' + . '\'' . PMA_sqlAddSlashes($table) . '\',' + . '\'' . PMA_sqlAddSlashes($display_field) . '\')'; } if (isset($upd_query)) { diff --git a/pmd_pdf.php b/pmd_pdf.php index 4972ae2fbb20..d697dd58cceb 100644 --- a/pmd_pdf.php +++ b/pmd_pdf.php @@ -22,7 +22,7 @@ $pmd_table = PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['designer_coords']); $pma_table = PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']); - $scale_q = PMA_sqlAddslashes($scale); + $scale_q = PMA_sqlAddSlashes($scale); if ('create_export' == $mode) { /* @@ -38,10 +38,10 @@ } } - $pdf_page_number_q = PMA_sqlAddslashes($pdf_page_number); + $pdf_page_number_q = PMA_sqlAddSlashes($pdf_page_number); if ('export' == $mode) { - $sql = "REPLACE INTO " . $pma_table . " (db_name, table_name, pdf_page_number, x, y) SELECT db_name, table_name, " . $pdf_page_number_q . ", ROUND(x/" . $scale_q . ") , ROUND(y/" . $scale_q . ") y FROM " . $pmd_table . " WHERE db_name = '" . PMA_sqlAddslashes($db) . "'"; + $sql = "REPLACE INTO " . $pma_table . " (db_name, table_name, pdf_page_number, x, y) SELECT db_name, table_name, " . $pdf_page_number_q . ", ROUND(x/" . $scale_q . ") , ROUND(y/" . $scale_q . ") y FROM " . $pmd_table . " WHERE db_name = '" . PMA_sqlAddSlashes($db) . "'"; PMA_query_as_controluser($sql,true,PMA_DBI_QUERY_STORE); } @@ -56,7 +56,7 @@ AND ' . $pmd_table . '.`table_name` = ' . $pma_table . '.`table_name` AND - ' . $pmd_table . '.`db_name`=\''. PMA_sqlAddslashes($db) .'\' + ' . $pmd_table . '.`db_name`=\''. PMA_sqlAddSlashes($db) .'\' AND pdf_page_number = ' . $pdf_page_number_q . ';', true, PMA_DBI_QUERY_STORE); } } @@ -83,7 +83,7 @@ $table_info_result = PMA_query_as_controluser('SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages']) - . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''); + . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''); if (PMA_DBI_num_rows($table_info_result) > 0) { echo '

' . __('Page') . ':'; diff --git a/pmd_relation_new.php b/pmd_relation_new.php index da92e9727a1c..a104cc119cb2 100644 --- a/pmd_relation_new.php +++ b/pmd_relation_new.php @@ -73,12 +73,12 @@ $q = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['relation']) . '(master_db, master_table, master_field, foreign_db, foreign_table, foreign_field)' . ' values(' - . '\'' . PMA_sqlAddslashes($db) . '\', ' - . '\'' . PMA_sqlAddslashes($T2) . '\', ' - . '\'' . PMA_sqlAddslashes($F2) . '\', ' - . '\'' . PMA_sqlAddslashes($db) . '\', ' - . '\'' . PMA_sqlAddslashes($T1) . '\',' - . '\'' . PMA_sqlAddslashes($F1) . '\')'; + . '\'' . PMA_sqlAddSlashes($db) . '\', ' + . '\'' . PMA_sqlAddSlashes($T2) . '\', ' + . '\'' . PMA_sqlAddSlashes($F2) . '\', ' + . '\'' . PMA_sqlAddSlashes($db) . '\', ' + . '\'' . PMA_sqlAddSlashes($T1) . '\',' + . '\'' . PMA_sqlAddSlashes($F1) . '\')'; if (PMA_query_as_controluser($q , false, PMA_DBI_QUERY_STORE)) { PMD_return_new(1, __('Internal relation added')); diff --git a/pmd_relation_upd.php b/pmd_relation_upd.php index 6b4b92bbe9f0..58c9135cce43 100644 --- a/pmd_relation_upd.php +++ b/pmd_relation_upd.php @@ -44,12 +44,12 @@ PMA_query_as_controluser('DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . $cfg['Server']['relation'].' WHERE ' - . 'master_db = \'' . PMA_sqlAddslashes($DB2) . '\'' - . ' AND master_table = \'' . PMA_sqlAddslashes($T2) . '\'' - . ' AND master_field = \'' . PMA_sqlAddslashes($F2) . '\'' - . ' AND foreign_db = \'' . PMA_sqlAddslashes($DB1) . '\'' - . ' AND foreign_table = \'' . PMA_sqlAddslashes($T1) . '\'' - . ' AND foreign_field = \'' . PMA_sqlAddslashes($F1) . '\'' + . 'master_db = \'' . PMA_sqlAddSlashes($DB2) . '\'' + . ' AND master_table = \'' . PMA_sqlAddSlashes($T2) . '\'' + . ' AND master_field = \'' . PMA_sqlAddSlashes($F2) . '\'' + . ' AND foreign_db = \'' . PMA_sqlAddSlashes($DB1) . '\'' + . ' AND foreign_table = \'' . PMA_sqlAddSlashes($T1) . '\'' + . ' AND foreign_field = \'' . PMA_sqlAddSlashes($F1) . '\'' , false, PMA_DBI_QUERY_STORE); } PMD_return_upd(1, __('Relation deleted')); diff --git a/pmd_save_pos.php b/pmd_save_pos.php index fb9d1ebd41e6..6fefe6327e77 100644 --- a/pmd_save_pos.php +++ b/pmd_save_pos.php @@ -20,18 +20,18 @@ $KEY = empty($IS_AJAX) ? urldecode($key) : $key; // table name decode (post PDF exp/imp) list($DB,$TAB) = explode(".", $KEY); PMA_query_as_controluser('DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['designer_coords']) . ' - WHERE `db_name` = \'' . PMA_sqlAddslashes($DB) . '\' - AND `table_name` = \'' . PMA_sqlAddslashes($TAB) . '\'', true, PMA_DBI_QUERY_STORE); + WHERE `db_name` = \'' . PMA_sqlAddSlashes($DB) . '\' + AND `table_name` = \'' . PMA_sqlAddSlashes($TAB) . '\'', true, PMA_DBI_QUERY_STORE); PMA_query_as_controluser('INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['designer_coords']) . ' (db_name, table_name, x, y, v, h) VALUES (' - . '\'' . PMA_sqlAddslashes($DB) . '\', ' - . '\'' . PMA_sqlAddslashes($TAB) . '\', ' - . '\'' . PMA_sqlAddslashes($t_x[$key]) . '\', ' - . '\'' . PMA_sqlAddslashes($t_y[$key]) . '\', ' - . '\'' . PMA_sqlAddslashes($t_v[$key]) . '\', ' - . '\'' . PMA_sqlAddslashes($t_h[$key]) . '\'' + . '\'' . PMA_sqlAddSlashes($DB) . '\', ' + . '\'' . PMA_sqlAddSlashes($TAB) . '\', ' + . '\'' . PMA_sqlAddSlashes($t_x[$key]) . '\', ' + . '\'' . PMA_sqlAddSlashes($t_y[$key]) . '\', ' + . '\'' . PMA_sqlAddSlashes($t_v[$key]) . '\', ' + . '\'' . PMA_sqlAddSlashes($t_h[$key]) . '\'' . ')', true, PMA_DBI_QUERY_STORE); } //---------------------------------------------------------------------------- diff --git a/po/af.po b/po/af.po index c8e8a4ec7fdd..fe02e65bc93d 100644 --- a/po/af.po +++ b/po/af.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" +"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -42,13 +42,13 @@ msgstr "" msgid "Search" msgstr "Soek" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -61,18 +61,18 @@ msgstr "Soek" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Gaan" @@ -118,7 +118,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databasis %s is verwyder." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 #, fuzzy msgid "Database comment: " msgstr "Tabel kommentaar" @@ -129,9 +129,9 @@ msgstr "Tabel kommentaar" msgid "Table comments" msgstr "Tabel kommentaar" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "Tabel kommentaar" msgid "Column" msgstr "Kolom name" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "Kolom name" msgid "Type" msgstr "Tipe" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "Skakels na" msgid "Comments" msgstr "Kommentaar" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "Kommentaar" msgid "No" msgstr "Nee" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,84 +261,84 @@ msgstr "Selekteer Niks" msgid "The database name is empty!" msgstr "Die tabel naam is leeg!" -#: db_operations.php:271 +#: db_operations.php:272 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabel %s is vernoem na %s" -#: db_operations.php:275 +#: db_operations.php:276 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabel %s is gekopieer na %s." -#: db_operations.php:403 +#: db_operations.php:404 #, fuzzy msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 #, fuzzy msgid "Command" msgstr "Kommentaar" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy msgid "Remove database" msgstr "Hernoem tabel na" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Databasis %s is verwyder." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Geen databasisse" -#: db_operations.php:486 +#: db_operations.php:487 #, fuzzy msgid "Copy database to" msgstr "Geen databasisse" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Slegs struktuur" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktuur en data" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Slegs Data" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -348,7 +347,7 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -360,7 +359,7 @@ msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" @@ -514,100 +513,100 @@ msgstr "SQL-navraag op databasis %s:" msgid "Submit Query" msgstr "Doen Navraag" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Jou SQL-navraag is suksesvol uitgevoer" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Geen tabelle in databasis gevind nie." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabel %s is verwyder" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabel %s is verwyder" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Bediener weergawe" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Geen databasisse" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " "separated by commas and not enclosed in quotations." msgstr "" @@ -6070,41 +6245,6 @@ msgstr "Kolom name" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Geen databasisse" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6127,40 +6267,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Geen indeks gedefinieer!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Uniek" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinality" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Die primere sleutel is verwyder" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeks %s is verwyder" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6173,27 +6279,6 @@ msgstr "Geen" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6434,19 +6519,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Geen tabelle" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "nie OK" @@ -6832,71 +6904,6 @@ msgstr "" msgid "Target database" msgstr "Soek in databasis" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Dit lyk of daar 'n fout is in jou SQL stelling. Die MySQL bediener se " -"foutboodskap hieronder (indien enige) kan jou ook help om die probleem te " -"diagnoseer" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Jy het moontlik 'n fout in die SQL interpreteerder ontdek. Ondersoek asb. " -"jou stelling deeglik, en maak seker dat jou kwotasies korrek en gebalanseerd " -"is. Ander moontlike oorsake vir die fout mag wees dat jy probeer om 'n leer " -"in te laai met binere data buite 'n gekwoteerde teks area. Jy kan jou SQL " -"stelling ook probeer direk in die MySQL opdrag-raakvlak (command line " -"interface). Die MySQL bediener se foutboodskap hieronder (indien enige) kan " -"jou ook help om die probleem te diagnoseer. As jy dan nog steeds probleme " -"het, of as die interpreteerder fouteer waar die opdrag-raakvlak slaag, " -"verminder asb. jou SQL stelling toevoer na die enkele stelling wat die " -"probleem veroorsaak, en rapporteer 'n fout met die data stuk in die " -"UITKNIPSEL seksie hieronder:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN UITKNIPSEL" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "EINDE UITKNIPSEL" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN ONVERANDERD (RAW)" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "EINDE ONVERANDERD (RAW)" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Ongebalanseerde kwotasie-teken" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Ongeldige Identifiseerder" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Onbekende Punktuasie String" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -6954,53 +6961,76 @@ msgstr "Soek die teksleer" msgid "web server upload directory" msgstr "" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" +"Dit lyk of daar 'n fout is in jou SQL stelling. Die MySQL bediener se " +"foutboodskap hieronder (indien enige) kan jou ook help om die probleem te " +"diagnoseer" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" +"Jy het moontlik 'n fout in die SQL interpreteerder ontdek. Ondersoek asb. " +"jou stelling deeglik, en maak seker dat jou kwotasies korrek en gebalanseerd " +"is. Ander moontlike oorsake vir die fout mag wees dat jy probeer om 'n leer " +"in te laai met binere data buite 'n gekwoteerde teks area. Jy kan jou SQL " +"stelling ook probeer direk in die MySQL opdrag-raakvlak (command line " +"interface). Die MySQL bediener se foutboodskap hieronder (indien enige) kan " +"jou ook help om die probleem te diagnoseer. As jy dan nog steeds probleme " +"het, of as die interpreteerder fouteer waar die opdrag-raakvlak slaag, " +"verminder asb. jou SQL stelling toevoer na die enkele stelling wat die " +"probleem veroorsaak, en rapporteer 'n fout met die data stuk in die " +"UITKNIPSEL seksie hieronder:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN UITKNIPSEL" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "EINDE UITKNIPSEL" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN ONVERANDERD (RAW)" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "EINDE ONVERANDERD (RAW)" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Ongebalanseerde kwotasie-teken" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabel %s is vernoem na %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Ongeldige Identifiseerder" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Onbekende Punktuasie String" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -7127,38 +7157,6 @@ msgstr "" msgid "+ Add a value" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8168,8 +8166,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/ar.po b/po/ar.po index e1a57562a9f1..49c86e12c86b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-24 04:50+0200\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-27 03:38+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "بحث" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "بحث" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "تنفيذ" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "تم إنشاء قاعدة البيانات %1$s." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " @@ -133,9 +133,9 @@ msgstr "ملاحظة قاعدة البيانات: " msgid "Table comments" msgstr "تعليقات الجدول" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "تعليقات الجدول" msgid "Column" msgstr "عمود" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "عمود" msgid "Type" msgstr "نوع" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "مرتبط بـ" msgid "Comments" msgstr "تعليقات" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "تعليقات" msgid "No" msgstr "لا" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,79 +262,79 @@ msgstr "إلغاء تحديد الكل" msgid "The database name is empty!" msgstr "إسم قاعدة البيانات خالي!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "تم إعادة تسمية قاعدة البيانات %s إلى %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "تم نسخ قاعدة البيانات %s إلى %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "أمر" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "حذف قاعدة البيانات" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "تم حذف قاعدة البيانات %s ." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "حذف قاعدة البيانات" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "نسخ قاعدة البيانات إلى" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "البنية فقط" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "البنية والبيانات" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "بيانات فقط" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "إنشاء قاعدة البيانات قبل عملية النسخ" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "أضف %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "أضف قيود" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "التبديل إلى قاعدة البيانات المنسوخة" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,16 +343,16 @@ msgstr "التبديل إلى قاعدة البيانات المنسوخة" msgid "Collation" msgstr "Collation" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "بناء الارتباطات" @@ -504,14 +503,14 @@ msgstr "إستعلام SQL في قاعدة البيانات %s:" msgid "Submit Query" msgstr "إرسال الإستعلام" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "تم تنفيذ إستعلام SQL بنجاح" -#: db_routines.php:155 +#: db_routines.php:157 #, fuzzy, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -522,83 +521,83 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "نتائج تنفيذ الإجراء %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format msgid "The following query has failed: \"%s\"" msgstr "فشل الإستعلام \"%s\"" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL قال: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "خطأ في معالجة الطلب" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, php-format msgid "No routine with name %1$s found in database %2$s" msgstr "لا يوجد جدول بالإسم %1$s في قاعدة البيانات %2$s" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "تنفيذ" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "تصدير %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "نوع الإجراء غير صحيح: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "عفواً , فشل في إستعادة الإجراء المزال" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "الإستعلام الإحتياطي:" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "تم تعديل الإجراء %1$s" -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "تم إنشاء الإجراء %1$s." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "حصل خطأ أثناء معالجة طلبك: " -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "إنشاء إجراء" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "تعديل الإجراء" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!CREATE TABLE options:" -msgstr "" +msgstr "خيارات CREATE TABLE :" #: libraries/config/messages.inc.php:123 msgid "Creation/Update/Check dates" @@ -2662,47 +2911,43 @@ msgstr "استخدم الإضافات المتأخرة" #: libraries/config/messages.inc.php:125 libraries/export/sql.php:79 msgid "Disable foreign key checks" -msgstr "" +msgstr "تعطيل التحقق من المفتاح الغريب" #: libraries/config/messages.inc.php:128 msgid "Use hexadecimal for BLOB" -msgstr "" +msgstr "إستخدم النظام الست عشري لـ BLOB" #: libraries/config/messages.inc.php:130 -#, fuzzy -#| msgid "Use delayed inserts" msgid "Use ignore inserts" -msgstr "استخدم الإضافات المتأخرة" +msgstr "إستخدم الإضافات المتجاهلة" #: libraries/config/messages.inc.php:132 msgid "Syntax to use when inserting data" -msgstr "" +msgstr "بناء الجملة لإستخدامه عند إدخال البيانات" #: libraries/config/messages.inc.php:133 libraries/export/sql.php:268 msgid "Maximal length of created query" -msgstr "" +msgstr "أقصى طول للإستعلام المنشئ" #: libraries/config/messages.inc.php:138 -#, fuzzy -#| msgid "Export" msgid "Export type" -msgstr "تصدير" +msgstr "نوع التصدير" #: libraries/config/messages.inc.php:139 libraries/export/sql.php:71 msgid "Enclose export in a transaction" -msgstr "" +msgstr "تضمين التصدير في العملية" #: libraries/config/messages.inc.php:140 msgid "Export time in UTC" -msgstr "" +msgstr "وقت التصدير (بالتوقيت العالمي)" #: libraries/config/messages.inc.php:148 msgid "Force secured connection while using phpMyAdmin" -msgstr "" +msgstr "فرض الإتصال الآمن عند إستخدام phpMyAdmin" #: libraries/config/messages.inc.php:149 msgid "Force SSL connection" -msgstr "" +msgstr "فرض إتصال SSL" #: libraries/config/messages.inc.php:150 msgid "" @@ -2712,30 +2957,30 @@ msgstr "" #: libraries/config/messages.inc.php:151 msgid "Foreign key dropdown order" -msgstr "" +msgstr "قائمة منسدلة مرتبة بالمفتاح الغريب" #: libraries/config/messages.inc.php:152 msgid "A dropdown will be used if fewer items are present" -msgstr "" +msgstr "سيتم إستخدام القائمة المنسدلة إذا وجد عدد أقل من العناصر" #: libraries/config/messages.inc.php:153 msgid "Foreign key limit" -msgstr "" +msgstr "حد المفتاح الغريب" #: libraries/config/messages.inc.php:154 msgid "Browse mode" -msgstr "" +msgstr "وضع الإستعراض" #: libraries/config/messages.inc.php:155 msgid "Customize browse mode" -msgstr "" +msgstr "تخصيص وضع الإستعراض" #: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 #: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 #: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 #: libraries/config/messages.inc.php:229 msgid "Customize default options" -msgstr "" +msgstr "تخصيص الخيارات الإفتراضية" #: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:236 #: libraries/config/setup.forms.php:315 @@ -2747,86 +2992,78 @@ msgstr "سي إس في" #: libraries/config/messages.inc.php:160 msgid "Developer" -msgstr "" +msgstr "مطور" #: libraries/config/messages.inc.php:161 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "إعدادات لمطوري phpMyAdmin" #: libraries/config/messages.inc.php:162 msgid "Edit mode" -msgstr "" +msgstr "وضع التعديل" #: libraries/config/messages.inc.php:163 msgid "Customize edit mode" -msgstr "" +msgstr "تخصيص وضع التعديل" #: libraries/config/messages.inc.php:165 msgid "Export defaults" -msgstr "" +msgstr "إفتراضيات التصدير" #: libraries/config/messages.inc.php:166 msgid "Customize default export options" -msgstr "" +msgstr "تخصيص خيارات التصدير الإفتراضي" #: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "مميزات" #: libraries/config/messages.inc.php:168 -#, fuzzy -#| msgid "Generate" msgid "General" -msgstr "ولد" +msgstr "عام" #: libraries/config/messages.inc.php:169 msgid "Set some commonly used options" -msgstr "" +msgstr "تعيين بعض الخيارات شائعة الإستخدام" #: libraries/config/messages.inc.php:170 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:231 setup/frames/menu.inc.php:20 msgid "Import" -msgstr "استورد" +msgstr "استيراد" #: libraries/config/messages.inc.php:171 msgid "Import defaults" -msgstr "" +msgstr "إفتراضيات الإستيراد" #: libraries/config/messages.inc.php:172 msgid "Customize default common import options" -msgstr "" +msgstr "تخصيص خيارات الإستيراد الإفتراضية" #: libraries/config/messages.inc.php:173 msgid "Import / export" -msgstr "" +msgstr "إستيراد / تصدير" #: libraries/config/messages.inc.php:174 msgid "Set import and export directories and compression options" -msgstr "" +msgstr "حدد عناوين الإستيراد والتصدير و خيارات الضغط" #: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 msgid "LaTeX" -msgstr "لاتكس" - -#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430 -#: libraries/server_links.inc.php:43 server_databases.php:100 -#: server_privileges.php:1740 -msgid "Databases" -msgstr "قاعدة بيانات" +msgstr "LaTeX" #: libraries/config/messages.inc.php:178 msgid "Databases display options" -msgstr "" +msgstr "خيارات عرض قواعد البيانات" #: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "إطار التصفح" #: libraries/config/messages.inc.php:180 msgid "Customize appearance of the navigation frame" -msgstr "" +msgstr "تخصيص مظهر إطار التصفح" #: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:110 @@ -2835,39 +3072,35 @@ msgstr "خوادم" #: libraries/config/messages.inc.php:182 msgid "Servers display options" -msgstr "" +msgstr "خيارات عرض الخوادم" #: libraries/config/messages.inc.php:184 msgid "Tables display options" -msgstr "" +msgstr "خيارات عرض الجداول" #: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "الإطار الرئيسي" #: libraries/config/messages.inc.php:186 msgid "Microsoft Office" -msgstr "" +msgstr "مايكروسوفت أوفيس" #: libraries/config/messages.inc.php:188 -#, fuzzy -#| msgid "Documentation" msgid "Open Document" -msgstr "مستندات وثائقية" +msgstr "مستند مفتوح" #: libraries/config/messages.inc.php:190 msgid "Other core settings" -msgstr "" +msgstr "الإعدادات الرئيسية الأخرى" #: libraries/config/messages.inc.php:191 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "الإعدادات التي لاتناسب في أي مكان آخر" #: libraries/config/messages.inc.php:192 -#, fuzzy -#| msgid "Page number:" msgid "Page titles" -msgstr "صفحة رقم:" +msgstr "عناوين الصفحة" #: libraries/config/messages.inc.php:193 msgid "" @@ -2885,49 +3118,48 @@ msgstr "نافذة الاستعلام" #: libraries/config/messages.inc.php:195 msgid "Customize query window options" -msgstr "" +msgstr "تخصيص خيارات نافذة الإستعلام" #: libraries/config/messages.inc.php:196 msgid "Security" -msgstr "" +msgstr "الأمان" #: libraries/config/messages.inc.php:197 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" +"فضلاً , تذكر أن phpMyAdmin هي واجة إستخدام فقط ولا يمكن أن تتجاوز حدود MySQL" #: libraries/config/messages.inc.php:198 msgid "Basic settings" -msgstr "" +msgstr "الإعدادات الأساسية" #: libraries/config/messages.inc.php:199 -#, fuzzy -#| msgid "Documentation" msgid "Authentication" -msgstr "مستندات وثائقية" +msgstr "المصادقة" #: libraries/config/messages.inc.php:200 msgid "Authentication settings" -msgstr "" +msgstr "خيارات المصادقة" #: libraries/config/messages.inc.php:201 msgid "Server configuration" -msgstr "" +msgstr "إعداد الخادم" #: libraries/config/messages.inc.php:202 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" -msgstr "" +msgstr "إعداد متقدم للخادم , لاتغير أي من هذه القيم حتى تعلم وظيفتها" #: libraries/config/messages.inc.php:203 msgid "Enter server connection parameters" -msgstr "" +msgstr "أدخل معلومات إتصال الخادم" #: libraries/config/messages.inc.php:204 msgid "Configuration storage" -msgstr "" +msgstr "إعداد التخزين" #: libraries/config/messages.inc.php:205 msgid "" @@ -4329,109 +4561,37 @@ msgstr "" msgid "Incorrect IP address: %s" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:47 -#: libraries/config.values.php:51 -msgid "Both" -msgstr "كلا" - -#: libraries/config.values.php:47 -msgid "Nowhere" -msgstr "لامكان" +#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. +#: libraries/core.lib.php:264 +msgctxt "PHP documentation language" +msgid "en" +msgstr "en" -#: libraries/config.values.php:47 -msgid "Left" -msgstr "يسار" +#: libraries/core.lib.php:278 +#, php-format +msgid "The %s extension is missing. Please check your PHP configuration." +msgstr "" -#: libraries/config.values.php:47 -msgid "Right" -msgstr "يمين" +#: libraries/db_events.inc.php:30 +#, php-format +msgid "Export of event %s" +msgstr "" -#: libraries/config.values.php:75 -msgid "Open" -msgstr "فتح" +#: libraries/db_events.inc.php:34 +#, php-format +msgid "Export of event \"%s\"" +msgstr "" -#: libraries/config.values.php:75 -msgid "Closed" -msgstr "إغلاق" +#: libraries/db_events.inc.php:40 +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %s found in database %s" +msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!." -#: libraries/config.values.php:96 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:122 libraries/export/texytext.php:24 -#: libraries/import.lib.php:1172 -msgid "structure" -msgstr "بناء" - -#: libraries/config.values.php:97 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:123 libraries/export/texytext.php:24 -msgid "data" -msgstr "بيانات" - -#: libraries/config.values.php:98 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:124 libraries/export/texytext.php:24 -msgid "structure and data" -msgstr "البنية والبيانات" - -#: libraries/config.values.php:100 -msgid "Quick - display only the minimal options to configure" -msgstr "سريع - عرض خيارات أقل" - -#: libraries/config.values.php:101 -msgid "Custom - display all possible options to configure" -msgstr "مخصص - عرض كل الخيارات المحتملة" - -#: libraries/config.values.php:102 -msgid "Custom - like above, but without the quick/custom choice" -msgstr "مخصص - مثل مافي الأعلى , لكن بدون الخيار سريع/مخصص" - -#: libraries/config.values.php:120 -msgid "complete inserts" -msgstr "إدخال كامل" - -#: libraries/config.values.php:121 -msgid "extended inserts" -msgstr "إدخال ممدد" - -#: libraries/config.values.php:122 -msgid "both of the above" -msgstr "كلاهما" - -#: libraries/config.values.php:123 -msgid "neither of the above" -msgstr "لاشيء منهم" - -#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. -#: libraries/core.lib.php:264 -msgctxt "PHP documentation language" -msgid "en" -msgstr "en" - -#: libraries/core.lib.php:278 -#, php-format -msgid "The %s extension is missing. Please check your PHP configuration." -msgstr "" - -#: libraries/db_events.inc.php:30 -#, php-format -msgid "Export of event %s" -msgstr "" - -#: libraries/db_events.inc.php:34 -#, php-format -msgid "Export of event \"%s\"" -msgstr "" - -#: libraries/db_events.inc.php:40 -#, fuzzy, php-format -#| msgid "No tables found in database." -msgid "No event with name %s found in database %s" -msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!." - -#: libraries/db_events.inc.php:56 libraries/db_links.inc.php:101 -#: libraries/export/sql.php:609 -msgid "Events" -msgstr "أحداث" +#: libraries/db_events.inc.php:56 libraries/db_links.inc.php:101 +#: libraries/export/sql.php:609 +msgid "Events" +msgstr "أحداث" #: libraries/db_events.inc.php:58 libraries/db_events.inc.php:60 msgid "There are no events to display." @@ -4467,23 +4627,6 @@ msgstr "" msgid "Add an event" msgstr "أضف مستخدم جديد" -#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 -msgid "Connection for controluser as defined in your configuration failed." -msgstr "" - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 -#: libraries/dbi/mysqli.dbi.lib.php:395 -msgid "The server is not responding" -msgstr "" - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - -#: libraries/dbi/mysql.dbi.lib.php:346 -msgid "Details..." -msgstr "" - #: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 #: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" @@ -4556,9 +4699,9 @@ msgstr "الطول/القيمة" #: libraries/export/php_array.php:29 libraries/export/sql.php:83 #: libraries/export/texytext.php:31 libraries/export/xls.php:29 #: libraries/export/xlsx.php:29 libraries/export/xml.php:25 -#: libraries/export/yaml.php:30 libraries/import/csv.php:33 +#: libraries/export/yaml.php:30 libraries/import.lib.php:1145 +#: libraries/import.lib.php:1167 libraries/import/csv.php:33 #: libraries/import/docsql.php:35 libraries/import/ldi.php:49 -#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/ods.php:32 libraries/import/sql.php:20 #: libraries/import/xls.php:28 libraries/import/xlsx.php:28 #: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889 @@ -4617,11 +4760,6 @@ msgstr "نوع الاستعلام" msgid "SQL data access" msgstr "" -#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452 -#: tbl_tracking.php:272 tbl_tracking.php:321 -msgid "Comment" -msgstr "تعليق" - #: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842 msgid "Routine parameters" msgstr "" @@ -4682,6 +4820,23 @@ msgid "" "3.11[/a]" msgstr "" +#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 +msgid "Connection for controluser as defined in your configuration failed." +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 +#: libraries/dbi/mysqli.dbi.lib.php:395 +msgid "The server is not responding" +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:346 +msgid "Details..." +msgstr "" + #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 msgid "Change password" @@ -4843,8 +4998,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5574,8 +5729,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5887,44 +6042,6 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/File.class.php:310 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "حجم الملف المرفوع يتجاوز حجم الملف المسموح به في إعدادات php" - -#: libraries/File.class.php:313 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "حجم الملف المرفوع يتجاوز حجم الملف المحدد به في نموذج HTML" - -#: libraries/File.class.php:316 -msgid "The uploaded file was only partially uploaded." -msgstr "تم رفع جزء من الملف فقط." - -#: libraries/File.class.php:319 -msgid "Missing a temporary folder." -msgstr "المجلد المؤقت مفقود." - -#: libraries/File.class.php:322 -msgid "Failed to write file to disk." -msgstr "فشلت عملية كتابة الملف على القرص." - -#: libraries/File.class.php:325 -msgid "File upload stopped by extension." -msgstr "رفع الملف إستوقف من قبل الامتداد." - -#: libraries/File.class.php:328 -msgid "Unknown error in file upload." -msgstr "خطأ غير معروف عند رفع الملف." - -#: libraries/File.class.php:559 -msgid "" -"Error moving the uploaded file, see [a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "" -"خطأ عند نقل الملف المرفوع , إنظر :[a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a]" - #: libraries/footer.inc.php:188 libraries/footer.inc.php:191 #: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" @@ -5942,6 +6059,40 @@ msgstr "ناتج استعلام SQL" msgid "Generated by" msgstr "أنشئ بواسطة" +#: libraries/import.lib.php:1141 +msgid "" +"The following structures have either been created or altered. Here you can:" +msgstr "" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "اذهب إلى الجدول" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + #: libraries/import/csv.php:38 libraries/import/ods.php:26 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 msgid "" @@ -6003,40 +6154,6 @@ msgstr "اسم العمود" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "اذهب إلى الجدول" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6059,40 +6176,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "لم يتم تعريف الفهرس!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "فريد" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "محزم" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinality" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "لقد تم حذف المفتاح الأساسي" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "تم حذف الفهرس %s" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6105,39 +6188,6 @@ msgstr "لا شيء" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d صف تأثر" -msgstr[1] "%1$d صف تأثر" -msgstr[2] "%1$d صفوف تأثرت" -msgstr[3] "%1$d صفوف تأثرت" -msgstr[4] "%1$d صفوف تأثرت" -msgstr[5] "%1$d صفوف تأثرت" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d صف حذف" -msgstr[1] "%1$d صف حذف" -msgstr[2] "%1$d صفوف حذفت" -msgstr[3] "%1$d صفوف حذفت" -msgstr[4] "%1$d صفوف حذفت" -msgstr[5] "%1$d صفوف حذفت" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d صف أضيف" -msgstr[1] "%1$d صف أضيف" -msgstr[2] "%1$d صفوف أضيفت" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6382,18 +6432,6 @@ msgstr "" msgid "This format has no options" msgstr "هذا التنسيق ليس له أي خيارات" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "لايستطيع حفظ الجدول الأخير" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "الجداول الأخيرة" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "لا يوجد جداول أخيرة" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "ليس صالحا" @@ -6780,66 +6818,6 @@ msgstr "فرق" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"يبدو أن هناك خطأ في استعلام SQL. سوف تساعدك رسالة الخطأ من خادم MySQL أدناه " -"في تشخيص المشكلة، إن كان هناك واحدة،." - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"هناك احتمال أنك عثرت على خلل في مدقق SQL. رجاءً اختبر استعلامك بدقة، وتأكد من " -"أن علامات التنصيص صحيحة ومتطابقة. بعض أسباب الإخفاق الأخرى قد تكون أنك تحاول " -"تحميل ملف يحتوي على بيانات غير نصية خارج منطقة التنصيص. يمكنك أيضا تجربة " -"استعلامك بواسطة سطر أوامر MySQL. قد تساعدك رسالة خطأ خادم MySQL أدناه، إن " -"كانت هناك واحدة، على تشخيص المشكلة. إن بقي هناك مشاكل أو إن أخفق المدقق في " -"حين نجح استخدام سطر الأوامر، رجاء قلص حجم استعلامك لاستعلام واحد يسبب " -"المشكلة، وقم بإرسال تقرير خلل مع جزء البيانات في منطقة القص أدناه:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "بدء القص" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "انتهاء القص" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "بدء بيانات أصلية" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "انتهاء البيانات الأصلية" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "علامة تنصيص غير مغلقة" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "معرف غير صالح" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "نص تنقيط غير معروف" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6897,56 +6875,74 @@ msgstr "مكان ملف نصي" msgid "web server upload directory" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو " -"مشروح في %sالتوثيق%s." +"يبدو أن هناك خطأ في استعلام SQL. سوف تساعدك رسالة الخطأ من خادم MySQL أدناه " +"في تشخيص المشكلة، إن كان هناك واحدة،." -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "لايوجد معلومات تفصيلية لحالة محرك التخزين هذا." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"هناك احتمال أنك عثرت على خلل في مدقق SQL. رجاءً اختبر استعلامك بدقة، وتأكد من " +"أن علامات التنصيص صحيحة ومتطابقة. بعض أسباب الإخفاق الأخرى قد تكون أنك تحاول " +"تحميل ملف يحتوي على بيانات غير نصية خارج منطقة التنصيص. يمكنك أيضا تجربة " +"استعلامك بواسطة سطر أوامر MySQL. قد تساعدك رسالة خطأ خادم MySQL أدناه، إن " +"كانت هناك واحدة، على تشخيص المشكلة. إن بقي هناك مشاكل أو إن أخفق المدقق في " +"حين نجح استخدام سطر الأوامر، رجاء قلص حجم استعلامك لاستعلام واحد يسبب " +"المشكلة، وقم بإرسال تقرير خلل مع جزء البيانات في منطقة القص أدناه:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s متوفر في خادم MySQL هذا." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "بدء القص" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s معطل في خادم MySQL هذا." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "انتهاء القص" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "بدء بيانات أصلية" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "قاعدة البيانات غير صالحة" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "انتهاء البيانات الأصلية" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "اسم الجدول غير صالح" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "علامة تنصيص غير مغلقة" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "تم إعادة تسمية الجدول %s إلى %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "معرف غير صالح" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "لا يمكن حفظ تفضيلات جدول UI" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "نص تنقيط غير معروف" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." +msgstr "" +"لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو " +"مشروح في %sالتوثيق%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7076,38 +7072,6 @@ msgstr "" msgid "+ Add a value" msgstr "أضف مستخدم جديد" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "مسار الصورة للمظهر %s غير صحيح!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "لاتتوفر معاينة." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "إعتبر" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "المظهر الإفتراضي %s غير موجود!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "المظهر %s غير موجود!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "مسار المظهر غير موجود للمظهر %s !" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "مظهر" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7410,8 +7374,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: main.php:314 msgid "" @@ -8160,8 +8124,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " @@ -10460,8 +10424,8 @@ msgstr "أعد تسمية العرض الـ" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %" -#~ "sهنا%s." +#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط " +#~ "%sهنا%s." #~ msgid "Execute bookmarked query" #~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية" diff --git a/po/az.po b/po/az.po index a14e0c688d8e..4bbf9b2f8935 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -41,13 +41,13 @@ msgstr "" msgid "Search" msgstr "Axtarış" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -60,18 +60,18 @@ msgstr "Axtarış" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Davam" @@ -118,7 +118,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%s bazası yaradildi" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Baza qısa izahatı: " @@ -128,9 +128,9 @@ msgstr "Baza qısa izahatı: " msgid "Table comments" msgstr "Cedvel haqqında qısa izahat" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -141,12 +141,12 @@ msgstr "Cedvel haqqında qısa izahat" msgid "Column" msgstr "Sütun adları" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -156,9 +156,9 @@ msgstr "Sütun adları" msgid "Type" msgstr "Tip" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -196,13 +196,12 @@ msgstr "Links to" msgid "Comments" msgstr "Qısa İzahatlar" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -213,17 +212,17 @@ msgstr "Qısa İzahatlar" msgid "No" msgstr "Xeyir" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -261,84 +260,84 @@ msgstr "Heç birini seçme" msgid "The database name is empty!" msgstr "Cedveli adı boşdur!" -#: db_operations.php:271 +#: db_operations.php:272 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" -#: db_operations.php:275 +#: db_operations.php:276 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "%s cedveli %s - e kopyalandı." -#: db_operations.php:403 +#: db_operations.php:404 #, fuzzy msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Komanda Tipi" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy msgid "Remove database" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "%s bazası leğv edildi." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:486 +#: db_operations.php:487 #, fuzzy msgid "Copy database to" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Sadece quruluş" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Quruluş ve me'lumat" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Sadece me'lumat" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT deyeri elave et" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "" -#: db_operations.php:527 +#: db_operations.php:528 #, fuzzy msgid "Switch to copied database" msgstr "Kopyalanmış cedvele keç" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -348,7 +347,7 @@ msgstr "Kopyalanmış cedvele keç" msgid "Collation" msgstr "Quruluş" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -360,7 +359,7 @@ msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -513,102 +512,102 @@ msgstr "SQL-query on database %s:" msgid "Submit Query" msgstr "Emri İcra Et" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL sorğunuz müveffeqiyyetle icra edilmişdir" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL deyir: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesler" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Me'lumat bazasında cedvel yoxdur." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "%s cedveli leğv edildi" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "%s cedveli leğv edildi" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Server versiyası" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " @@ -6158,41 +6333,6 @@ msgstr "Sütun adları" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Baza seçilmemişdir ve ya mövcud deyildir." - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6215,40 +6355,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "İndeks te'yin edilmedi!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unikal" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinality" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Birinci dereceli açar leğv edildi" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "%s indeksi leğv edildi" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6261,27 +6367,6 @@ msgstr "Heç biri" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6531,19 +6616,6 @@ msgstr "" msgid "This format has no options" msgstr "Bu formatın variantları yoxdur" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Cedvel yoxdur" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Müveffeqiyyetsiz" @@ -6936,68 +7008,6 @@ msgstr "" msgid "Target database" msgstr "Search in database" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Unclosed quote" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Invalid Identifer" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Unknown Punctuation String" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -7055,56 +7065,76 @@ msgstr "tekst faylından yükleyerek" msgid "web server upload directory" msgstr "web-server upload direktoriyası" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary php extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Bu depolama motoru haqqında etrafli status me'lumatı mövcud deyildir." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" -#: libraries/StorageEngine.class.php:355 -#, fuzzy, php-format -msgid "%s is available on this MySQL server." -msgstr "%s motoru bu serverde söndürülmüşdür." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s motoru bu serverde söndürülmüşdür." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Bu MySQL server %s depolama motorunu desteklememektedir." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Unclosed quote" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Invalid Identifer" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Unknown Punctuation String" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary php extensions as described in the %sdocumentation%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7235,38 +7265,6 @@ msgstr "" msgid "+ Add a value" msgstr "Yeni İstifadeçi elave Et" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8340,8 +8338,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler " "cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin " diff --git a/po/be.po b/po/be.po index 840e445bc8fd..7fdd1da6fc97 100644 --- a/po/be.po +++ b/po/be.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "Пошук" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "Пошук" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Панеслася" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " @@ -131,9 +131,9 @@ msgstr "Камэнтар да базы дадзеных: " msgid "Table comments" msgstr "Камэнтар да табліцы" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "Камэнтар да табліцы" msgid "Column" msgstr "Назвы калёнак" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "Назвы калёнак" msgid "Type" msgstr "Тып" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Зьвязаная з" msgid "Comments" msgstr "Камэнтары" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "Камэнтары" msgid "No" msgstr "Не" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,82 +262,82 @@ msgstr "Зьняць усе адзнакі" msgid "The database name is empty!" msgstr "Імя базы дадзеных не пазначанае!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "База дадзеных %s была перайменаваная ў %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "База дадзеных %s была скапіяваная ў %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Каманда" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "База дадзеных %s была выдаленая." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Базы дадзеных адсутнічаюць" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Капіяваць базу дадзеных у" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Толькі структуру" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Структуру і дадзеныя" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Толькі дадзеныя" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Дадаць абмежаваньні" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Перайсьці да скапіяванай базы дадзеных" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -347,7 +346,7 @@ msgstr "Перайсьці да скапіяванай базы дадзеных msgid "Collation" msgstr "Супастаўленьне" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -359,7 +358,7 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -512,107 +511,107 @@ msgstr "SQL-запыт да БД %s:" msgid "Submit Query" msgstr "Выканаць запыт" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запыт быў пасьпяхова выкананы" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Адказ MySQL: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Працэсы" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "У базе дадзеных табліц ня выяўлена." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "Імпартаваць файлы" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Табліца %s была выдаленая" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Табліца %1$s створаная." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Стварыць сувязь" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy msgid "Edit routine" msgstr "Вэб-сэрвэр" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Базы дадзеных адсутнічаюць" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +#, fuzzy +msgid "Go to table" +msgstr "Базы дадзеных адсутнічаюць" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 msgid "" "If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " @@ -6340,42 +6525,6 @@ msgstr "Назвы калёнак" msgid "This plugin does not support compressed imports!" msgstr "Гэты плагін не падтрымлівае сьціснутыя дадзеныя!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Базы дадзеных адсутнічаюць" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "Базы дадзеных адсутнічаюць" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6400,42 +6549,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Індэкс ня вызначаны!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Унікальнае" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Сьціснутая" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Колькасьць элемэнтаў" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Першасны ключ быў выдалены" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Індэкс %s быў выдалены" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " -"іх, магчыма, можна выдаліць." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6448,30 +6561,6 @@ msgstr "Няма" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, fuzzy, php-format -#| msgid "%1$d row(s) affected." -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Зьменена радкоў: %1$d." -msgstr[1] "Зьменена радкоў: %1$d." - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "%1$d row(s) deleted." -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Выдалена радкоў: %1$d." -msgstr[1] "Выдалена радкоў: %1$d." - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "%1$d row(s) inserted." -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Устаўлена радкоў: %1$d." -msgstr[1] "Устаўлена радкоў: %1$d." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6716,22 +6805,6 @@ msgstr "" msgid "This format has no options" msgstr "Гэты фармат ня мае опцыяў" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Няма табліц" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -msgid "There are no recent tables" -msgstr "Праверыць табліцу" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "не OK" @@ -7128,6 +7201,64 @@ msgstr "" msgid "Target database" msgstr "Пошук у базе дадзеных" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +#, fuzzy +msgid "Clear" +msgstr "Каляндар" + +#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Column names" +msgid "Columns" +msgstr "Назвы калёнак" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Дадаць гэты SQL-запыт у закладкі" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Замяніць існую закладку з такім жа імем" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Не перазапісвайце гэты запыт у іншых вокнах" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Разьдзяляльнік" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Паказаць гэты запыт зноў " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Толькі прагляд" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Месцазнаходжаньне тэкставага файла" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7192,64 +7323,6 @@ msgstr "Няправільны ідэнтыфікатар" msgid "Unknown Punctuation String" msgstr "Невядомы сымбаль пунктуацыі" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -#, fuzzy -msgid "Clear" -msgstr "Каляндар" - -#: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" -msgid "Columns" -msgstr "Назвы калёнак" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Дадаць гэты SQL-запыт у закладкі" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Замяніць існую закладку з такім жа імем" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Не перазапісвайце гэты запыт у іншых вокнах" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Разьдзяляльнік" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Паказаць гэты запыт зноў " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Толькі прагляд" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Месцазнаходжаньне тэкставага файла" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7260,49 +7333,6 @@ msgstr "" "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %sдакумэнтацыі" "%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Для гэтай машыны захаваньня дадзеных дэтальная інфармацыя не даступная." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s даступная на гэтым MySQL-сэрвэры." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s была адключаная для рэтага MySQL-сэрвэра." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Няправільная база дадзеных" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Некарэктнае імя табліцы" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Памылка перайменаваньня табліцы %1$s у %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Табліца %s была перайменаваная ў %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Табліца — пустая!" @@ -7433,38 +7463,6 @@ msgstr "Азначэньне PARTITION" msgid "+ Add a value" msgstr "Дадаць новага карыстальніка" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Папярэдні прагляд недаступны." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "гэтая" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Тэма па змоўчаньні %s ня знойдзеная!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Тэма %s ня знойдзеная!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Ня знойдзены шлях да тэмы %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8595,8 +8593,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " "прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " diff --git a/po/be@latin.po b/po/be@latin.po index 50d9734d263f..2362ec90aa02 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" +"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: be@latin\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Pošuk" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Pošuk" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Paniesłasia" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " @@ -133,9 +133,9 @@ msgstr "Kamentar da bazy dadzienych: " msgid "Table comments" msgstr "Kamentar da tablicy" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -146,12 +146,12 @@ msgstr "Kamentar da tablicy" msgid "Column" msgstr "Nazvy kalonak" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -161,9 +161,9 @@ msgstr "Nazvy kalonak" msgid "Type" msgstr "Typ" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -201,13 +201,12 @@ msgstr "Źviazanaja z" msgid "Comments" msgstr "Kamentary" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -218,17 +217,17 @@ msgstr "Kamentary" msgid "No" msgstr "Nie" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -265,83 +264,83 @@ msgstr "Źniać usie adznaki" msgid "The database name is empty!" msgstr "Imia bazy dadzienych nie paznačanaje!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Kamanda" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Baza dadzienych %s była vydalenaja." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Tolki strukturu" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Strukturu i dadzienyja" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Tolki dadzienyja" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Dadać abmiežavańni" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Pierajści da skapijavanaj bazy dadzienych" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -350,7 +349,7 @@ msgstr "Pierajści da skapijavanaj bazy dadzienych" msgid "Collation" msgstr "Supastaŭleńnie" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -362,7 +361,7 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -516,14 +515,14 @@ msgstr "SQL-zapyt da BD %s:" msgid "Submit Query" msgstr "Vykanać zapyt" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -531,94 +530,94 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Adkaz MySQL: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Pracesy" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "U bazie dadzienych tablic nia vyjaŭlena." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Niekarektny indeks servera: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tablica %s była vydalenaja" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Stvaryć suviaź" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Pracedury" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" "If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " "separated by commas and not enclosed in quotations." @@ -6319,40 +6502,6 @@ msgstr "Nazvy kalonak" msgid "This plugin does not support compressed imports!" msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6377,42 +6526,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Indeks nia vyznačany!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unikalnaje" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Ścisnutaja" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kolkaść elementaŭ" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Pieršasny kluč byŭ vydaleny" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeks %s byŭ vydaleny" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź " -"ich, mahčyma, možna vydalić." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6425,30 +6538,6 @@ msgstr "Nijakaja" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, fuzzy, php-format -#| msgid "%1$d row(s) affected." -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Źmieniena radkoŭ: %1$d." -msgstr[1] "Źmieniena radkoŭ: %1$d." - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "%1$d row(s) deleted." -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Vydalena radkoŭ: %1$d." -msgstr[1] "Vydalena radkoŭ: %1$d." - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "%1$d row(s) inserted." -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Ustaŭlena radkoŭ: %1$d." -msgstr[1] "Ustaŭlena radkoŭ: %1$d." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6693,22 +6782,6 @@ msgstr "" msgid "This format has no options" msgstr "Hety farmat nia maje opcyjaŭ" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Select Tables" -msgid "Recent tables" -msgstr "Vybierycie tablicu(y)" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "nie OK" @@ -7100,6 +7173,63 @@ msgstr "" msgid "Target database" msgstr "" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Vykanać SQL-zapyt(y) na servery %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "" + +#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Column names" +msgid "Columns" +msgstr "Nazvy kalonak" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Dadać hety SQL-zapyt u zakładki" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Zamianić isnuju zakładku z takim ža imiem" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Nie pierazapisvajcie hety zapyt u inšych voknach" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Raździalalnik" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Pakazać hety zapyt znoŭ " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Tolki prahlad" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Miescaznachodžańnie tekstavaha fajła" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "tečka web-servera dla zahruzki fajłaŭ" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7165,63 +7295,6 @@ msgstr "Niapravilny identyfikatar" msgid "Unknown Punctuation String" msgstr "Nieviadomy symbal punktuacyi" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Vykanać SQL-zapyt(y) na servery %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "" - -#: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" -msgid "Columns" -msgstr "Nazvy kalonak" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Dadać hety SQL-zapyt u zakładki" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Zamianić isnuju zakładku z takim ža imiem" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Nie pierazapisvajcie hety zapyt u inšych voknach" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Raździalalnik" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Pakazać hety zapyt znoŭ " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Tolki prahlad" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Miescaznachodžańnie tekstavaha fajła" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "tečka web-servera dla zahruzki fajłaŭ" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7229,51 +7302,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci " -"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" -"sdakumentacyi%s." - -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Dla hetaj mašyny zachavańnia dadzienych detalnaja infarmacyja nie dastupnaja." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s dastupnaja na hetym MySQL-servery." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s była adklučanaja dla retaha MySQL-servera." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Niapravilnaja baza dadzienych" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Niekarektnaje imia tablicy" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tablica %s była pierajmienavanaja ŭ %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " +"%sdakumentacyi%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7406,38 +7436,6 @@ msgstr "Aznačeńnie PARTITION" msgid "+ Add a value" msgstr "Dadać novaha karystalnika" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Papiaredni prahlad niedastupny." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "hetaja" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Tema pa zmoŭčańni %s nia znojdzienaja!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s nia znojdzienaja!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Nia znojdzieny šlach da temy %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -7505,8 +7503,8 @@ msgstr "" "dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar " "vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar " "vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo " -"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U " -"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " +"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). " +"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " "parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), " "a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()." @@ -8571,8 +8569,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " "pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " diff --git a/po/bg.po b/po/bg.po index 22f5b00f70a9..d01918352e1c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-23 14:27+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Търсене" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Търсене" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Изпълнение" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "БД %1$s беше създадена." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Коментар към БД: " @@ -132,9 +132,9 @@ msgstr "Коментар към БД: " msgid "Table comments" msgstr "Коментари към таблицата" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Коментари към таблицата" msgid "Column" msgstr "Kолона" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Kолона" msgid "Type" msgstr "Тип" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Свързана към" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Коментари" msgid "No" msgstr "Не" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Размаркиране всички" msgid "The database name is empty!" msgstr "Името на БД е празно!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "БД %s беше преименувана на %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "БД %s беше копирана като %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Преименуване БД на" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Команда" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Изтриване БД" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "БД %s беше изтрита." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Изтриване на БД (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Копиране на БД в" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Само структурата" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Структурата и данните" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Само данните" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне на AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Добавяне на ограничение" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Показване на копираната БД" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Показване на копираната БД" msgid "Collation" msgstr "Колация" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "Хранилището за конфигурацията на phpMyAdmin е деактивирано. За да разберете " "защо натиснете %sтук%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Редакция или експорт на релационна схема" @@ -498,109 +497,109 @@ msgstr "SQL заявка към БД %s:" msgid "Submit Query" msgstr "Изпълни заявката" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL заявката беше изпълнена успешно" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Позволява стартиране на съхранени процедури." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL отговори: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Грешка при обработка на заявката" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "В БД няма таблици" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export as %s" msgid "Export of routine %s" msgstr "Експорт като %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Невалиден индекс на сървър: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Колоната %s беше изтрита" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Таблицата %1$s беше създадена." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create view" msgid "Create routine" msgstr "Създаване на изглед" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Редактиране" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import/csv.php:42 -msgid "Column names: " -msgstr "Имена на колони: " +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" -#: libraries/import/csv.php:62 libraries/import/csv.php:75 -#: libraries/import/csv.php:80 libraries/import/csv.php:85 -#, php-format -msgid "Invalid parameter for CSV import: %s" +#: libraries/import.lib.php:1147 +msgid "Go to database" msgstr "" -#: libraries/import/csv.php:132 -#, php-format +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +msgid "Column names: " +msgstr "Имена на колони: " + +#: libraries/import/csv.php:62 libraries/import/csv.php:75 +#: libraries/import/csv.php:80 libraries/import/csv.php:85 +#, php-format +msgid "Invalid parameter for CSV import: %s" +msgstr "" + +#: libraries/import/csv.php:132 +#, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." @@ -5854,40 +6031,6 @@ msgstr "Име на колона" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -5910,42 +6053,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Не е дефиниран индекс!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Уникално" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Кардиналност" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Главния ключ беше изтрит" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Индекса %s беше изтрит" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да " -"бъде премахнат." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -5956,27 +6063,6 @@ msgstr "Няма" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d повлиян ред." -msgstr[1] "%1$d повлияни реда." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d ред изтрит." -msgstr[1] "%1$d реда изтрити." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d ред добавен." -msgstr[1] "%1$d реда добавени." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "От" @@ -6215,20 +6301,6 @@ msgstr "" msgid "This format has no options" msgstr "Този формат няма опции" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not save configuration" -msgid "Could not save recent table" -msgstr "Конфигурацията не може да бъде запазена" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Отваряни таблици" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Няма наскоро отваряни таблици" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "не е OK" @@ -6602,6 +6674,61 @@ msgstr "Различия" msgid "Target database" msgstr "Целева БД" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Изпълняване на SQL заявка/заявки на сървър %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Изпълнение на SQL заявка/заявки към БД %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Изчистване" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Колони" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Отбелязване SQL заявката" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Всеки потребител да има достъп до тази белязка" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Замяна белязката със същото име" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Не препокривайте тази заявка извън този прозорец" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Разделител" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Показване на заявката отново " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Само показване" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Местоположение на текстовия файл" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "директорията за upload на web сървъра" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6665,61 +6792,6 @@ msgstr "Невалиден идентификатор" msgid "Unknown Punctuation String" msgstr "Непознат пунктуационен низ" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Изпълняване на SQL заявка/заявки на сървър %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Изпълнение на SQL заявка/заявки към БД %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Изчистване" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Колони" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Отбелязване SQL заявката" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Всеки потребител да има достъп до тази белязка" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Замяна белязката със същото име" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Не препокривайте тази заявка извън този прозорец" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Разделител" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Показване на заявката отново " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Само показване" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Местоположение на текстовия файл" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "директорията за upload на web сървъра" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -6727,50 +6799,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" -"s." - -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Няма детайлна информация за състоянието на това хранилище на данни." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s е разрешен на този MySQL сървър." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s е изключен за този MySQL сървър." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Този MySQL сървър не поддържа хранилището на данни %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Невалидна БД" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Невалидно име на таблица" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Грешка при преименуване на таблица %1$s в %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Таблица %s беше преименувана на %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията" +"%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -6893,38 +6923,6 @@ msgstr "" msgid "+ Add a value" msgstr "+ Добавяне на нова стойност" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Не открито изображение към тема %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Прегледът не е достъпен." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "тази ще е" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Темата по подразбиране %s не е намерена!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Тема %s не е намерена!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Не е открит път към тема %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7478,8 +7476,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %" -"sскрипта за настройки%s." +"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " +"%sскрипта за настройки%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7929,8 +7927,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Забележка: phpMyAdmin взема потребителските права директно от таблицата с " "правата на MySQL. Съдържанието на тази таблица може да се различава от " @@ -10071,8 +10069,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %" -"s." +"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка " +"%s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/bn.po b/po/bn.po index ffa9c80b894d..1acb4dcac9a1 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" +"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "খুঁজুন" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "খুঁজুন" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "যাও" @@ -120,7 +120,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" @@ -130,9 +130,9 @@ msgstr "ডাটাবেজ মন্তব্যসমূহঃ" msgid "Table comments" msgstr "টেবিলের মন্তব্য সমূহ" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -141,12 +141,12 @@ msgstr "টেবিলের মন্তব্য সমূহ" msgid "Column" msgstr "কলামের" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -156,9 +156,9 @@ msgstr "কলামের" msgid "Type" msgstr "ধরন" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -196,13 +196,12 @@ msgstr "সংযুক্তি হবে" msgid "Comments" msgstr "মন্তব্যসমূহ" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -213,17 +212,17 @@ msgstr "মন্তব্যসমূহ" msgid "No" msgstr "না" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -260,82 +259,82 @@ msgstr "সবগুলো অনির্বাচিত হোক" msgid "The database name is empty!" msgstr "ডাটাবেজ এর নাম দেওয়া হয়নি" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "%s ডাটাবেজটির নাম পরিবর্তন করে %s নাম দেওয়া হয়েছে" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "নির্দেশ" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "কোন ডাটাবেজ নাই" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "ডাটাবেজ কপি করঃ" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "শুধুই গঠনপ্রণালী" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "গঠনপ্রণালী এবং তথ্য" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "শুধু ডাটা" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "সংযুক্ত %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT এর মান সংযুক্ত করুন" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "constraints সংযুক্ত করুন" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তিত হবে" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,7 +343,7 @@ msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তি msgid "Collation" msgstr "Collation" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -356,7 +355,7 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -509,104 +508,104 @@ msgstr "SQL query on database %s:" msgid "Submit Query" msgstr "Submit Query" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL said: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Processes" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "ফাইল ইম্পোর্ট কর" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Invalid server index: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Table %s has been dropped" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Table %s has been dropped" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Server version" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" +msgstr "" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "কোন ডাটাবেজ নাই" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +#, fuzzy +msgid "Go to table" +msgstr "কোন ডাটাবেজ নাই" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" msgstr "" #: libraries/import/csv.php:40 @@ -6262,42 +6444,6 @@ msgstr "কলামের নাম" msgid "This plugin does not support compressed imports!" msgstr "This plugin does not support compressed imports!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "কোন ডাটাবেজ নাই" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "কোন ডাটাবেজ নাই" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6322,40 +6468,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "No index defined!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unique" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinality" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "The primary key has been dropped" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "%s ইন্ডেস্ক মুছে ফেলা হয়েছে" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6368,29 +6480,6 @@ msgstr "কোনটিই নয়" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "No rows selected" -msgstr[1] "No rows selected" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "No rows selected" -msgstr[1] "No rows selected" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6633,22 +6722,6 @@ msgstr "" msgid "This format has no options" msgstr "This format has no options" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "কোন টেবিল নাই" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -msgid "There are no recent tables" -msgstr "টেবিল পরীক্ষা কর" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "ঠিক নাই" @@ -7042,68 +7115,6 @@ msgstr "" msgid "Target database" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Unclosed quote" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Invalid Identifer" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Unknown Punctuation String" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7162,57 +7173,76 @@ msgstr "Location of the text file" msgid "web server upload directory" msgstr "web server upload directory" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s is available on this MySQL server." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "MySQL সার্ভার এর জন্য %s বন্ধ করা হয়েছে ." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Invalid database" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Unclosed quote" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Table %s has been renamed to %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Invalid Identifer" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Unknown Punctuation String" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7344,38 +7374,6 @@ msgstr "" msgid "+ Add a value" msgstr "একটি নতুন ইউজার যোগ করুন" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "No valid image path for theme %s found!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "No preview available." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "take it" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Default theme %s not found!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Theme %s not found!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Theme path not found for theme %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8490,13 +8488,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/br.po b/po/br.po index f977f1f058a9..25fab6d648ad 100644 --- a/po/br.po +++ b/po/br.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-24 12:54+0200\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-26 20:07+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: br\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.0.5\n" @@ -30,7 +30,7 @@ msgstr "Diskouez pep tra" #: libraries/schema/Pdf_Relation_Schema.class.php:1111 #: libraries/schema/User_Schema.class.php:356 msgid "Page number:" -msgstr "Pajenn niv. :" +msgstr "Pajenn niv. : " #: browse_foreigners.php:133 msgid "" @@ -49,13 +49,13 @@ msgstr "" msgid "Search" msgstr "Klask" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -68,18 +68,18 @@ msgstr "Klask" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Mont" @@ -126,7 +126,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Krouet eo bet an diaz roadennoù %1$s." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " @@ -136,9 +136,9 @@ msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " msgid "Table comments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -147,12 +147,12 @@ msgstr "Evezhiadennoù diwar-benn an daolenn" msgid "Column" msgstr "Bann" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -162,9 +162,9 @@ msgstr "Bann" msgid "Type" msgstr "Seurt" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -202,13 +202,12 @@ msgstr "Liammet ouzh" msgid "Comments" msgstr "Evezhiadennoù" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -219,17 +218,17 @@ msgstr "Evezhiadennoù" msgid "No" msgstr "Ket" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -266,79 +265,79 @@ msgstr "Diziuzañ pep tra" msgid "The database name is empty!" msgstr "Goullo eo anv an diaz roadennoù !" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Deuet eo anv an diaz roadennoù %s da vezañ %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Eilet eo bet an diaz roadennoù %s war %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Cheñch anv an diaz roadennoù hag e envel" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Urzhiad" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Dilemel an diaz roadennoù" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Diverket eo bet an diaz roadennoù %s." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Diverkañ an diaz roadennoù (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Eilañ an diaz roadennoù war" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Ar framm hepken" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Ar framm hag ar roadennoù ennañ" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Ar roadennoù hepken" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "KROUIÑ AN DIAZ ROADENNOÙ a-raok eilañ" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Ouzhpennañ %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Ouzhpennañ ar strishadurioù" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Mont d'an diaz roadennoù eilet" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -347,7 +346,7 @@ msgstr "Mont d'an diaz roadennoù eilet" msgid "Collation" msgstr "Etrerummadiñ" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -356,7 +355,7 @@ msgstr "" "Diweredekaet eo bet ar stokañ kefluniadurioù evit phpMyAdmin. Evit gouzout " "perak klikañ %samañ%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Embann pe ezporzhiañ ur chema kar" @@ -502,98 +501,98 @@ msgstr "Reked SQL ouzh an diaz roadennoù %s:" msgid "Submit Query" msgstr "Kas ar reked" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Sevenet eo bet ho reked SQL ervat" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh" msgstr[1] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "Disoc'hoù seveniñ an argerzh %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" -msgstr "" +msgstr "C'hwitet eo bet ar reked da-heul : \"%s\"" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "respontet eo bet gant MySQL : " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "Fazi en ur seveniñ ar reked" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, php-format msgid "No routine with name %1$s found in database %2$s" msgstr "" "N'eus bet kavet argerzh ebet gantañ an anv a %1$s en diaz roadennoù %2$s" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "Seveniñ an argerzh" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "Ezporzhiañ an argerzh %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Seurt argerzh faziek : \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "Ho tigarez, disposupl eo bet assevel an argerzh." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "Setu amañ ar reked a oa bet miret :" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "Kemmet eo bet an argerzh %1s." -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "Krouet eo bet an argerzh %1s." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "Ur fazi, pe meur a hini, zo bet en ur seveniñ ho koulenn :" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "Krouiñ un argerzh" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "Kemmañ un argerzh" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!frames-capable browser." msgstr "" +"Un tamm aesoc'h eo phpMyAdmin gant ur merdeer a skor ar frammoù." #: js/messages.php:25 server_synchronize.php:340 server_synchronize.php:352 #: server_synchronize.php:368 server_synchronize.php:375 #: server_synchronize.php:734 server_synchronize.php:762 #: server_synchronize.php:790 server_synchronize.php:802 msgid "Click to select" -msgstr "" +msgstr "Klikañ evit diuzañ" #: js/messages.php:26 msgid "Click to unselect" -msgstr "" +msgstr "Klikañ evit diziuzañ" #: js/messages.php:27 libraries/import.lib.php:103 sql.php:214 msgid "\"DROP DATABASE\" statements are disabled." -msgstr "" +msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" #: js/messages.php:30 libraries/mult_submits.inc.php:282 sql.php:312 msgid "Do you really want to " -msgstr "" +msgstr "Ha sur oc'h e fell deoc'h " #: js/messages.php:31 libraries/mult_submits.inc.php:282 sql.php:297 msgid "You are about to DESTROY a complete database!" -msgstr "" +msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !" #: js/messages.php:32 msgid "You are about to DESTROY a complete table!" -msgstr "" +msgstr "Emaoc'h war-nes DISTRUJ un daolennad glok !" #: js/messages.php:33 msgid "You are about to TRUNCATE a complete table!" -msgstr "" +msgstr "Emaoc'h war-nes RIÑSAÑ un daolennad penn-da-benn !" #: js/messages.php:35 msgid "Deleting tracking data" -msgstr "" +msgstr "O tiverkañ ar roadennoù heuliañ" #: js/messages.php:36 msgid "Dropping Primary Key/Index" -msgstr "" +msgstr "O tistruj an Alc'hwez kentidik/Meneger" #: js/messages.php:37 msgid "This operation could take a long time. Proceed anyway?" -msgstr "" +msgstr "Pell e c'hall padout an oberiadenn-mañ. Kenderc'hel memes tra ?" #: js/messages.php:40 msgid "You are about to DISABLE a BLOB Repository!" -msgstr "" +msgstr "Emaoc'h war-nes DIWEREDEKAAT ur c'havlec'h BLOB !" #: js/messages.php:41 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" +"Ha sur oc'h e fell deoc'h diweredekaat an holl zaveennoù BLOB evit an diaz " +"roadennoù %s ?" #: js/messages.php:44 msgid "Missing value in the form!" -msgstr "" +msgstr "Furmskrid diglok !" #: js/messages.php:45 msgid "This is not a number!" -msgstr "" +msgstr "N'eo ket hemañ un niver !" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:49 msgid "Total count" -msgstr "" +msgstr "Sammad hollek" #: js/messages.php:52 msgid "The host name is empty!" -msgstr "" +msgstr "Goullo eo anv ar servijer !" #: js/messages.php:53 msgid "The user name is empty!" -msgstr "" +msgstr "Goullo eo anv an implijer !" #: js/messages.php:54 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" -msgstr "" +msgstr "Goullo eo ar ger-tremen !" #: js/messages.php:55 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" -msgstr "" +msgstr "Ne glot ket ar gerioù-tremen !" #: js/messages.php:56 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 msgid "Add user" -msgstr "" +msgstr "Ouzhpennañ un implijer" #: js/messages.php:57 msgid "Reloading Privileges" -msgstr "" +msgstr "Oc'h adkargañ an dreistgwirioù" #: js/messages.php:58 msgid "Removing Selected Users" -msgstr "" +msgstr "O lemel kuit an implijerien diuzet" #: js/messages.php:59 libraries/tbl_properties.inc.php:772 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" -msgstr "" +msgstr "Serriñ" -#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594 -#: libraries/common.lib.php:1144 libraries/common.lib.php:2960 -#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150 -#: libraries/import.lib.php:1174 libraries/Index.class.php:468 +#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468 +#: libraries/common.lib.php:594 libraries/common.lib.php:1144 +#: libraries/common.lib.php:2960 libraries/common.lib.php:2961 +#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 #: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137 msgid "Edit" -msgstr "" +msgstr "Kemmañ" #: js/messages.php:64 server_status.php:420 msgid "Live traffic chart" -msgstr "" +msgstr "Grafik an tremenerezh evel m'emañ diouzhtu" #: js/messages.php:65 server_status.php:423 msgid "Live conn./process chart" -msgstr "" +msgstr "Grafik ar c'hevreadennoù hag argerzhioù evel m'emaint diouzhtu" #: js/messages.php:66 server_status.php:445 msgid "Live query chart" -msgstr "" +msgstr "Grafik ar rekedoù evel m'emaint diouzhtu" #: js/messages.php:68 msgid "Static data" -msgstr "" +msgstr "Roadennoù stadegel" #. l10n: Total number of queries #: js/messages.php:70 libraries/build_html_for_db.lib.php:45 @@ -1174,164 +1176,165 @@ msgstr "" #: server_status.php:701 server_status.php:762 tbl_printview.php:348 #: tbl_structure.php:832 msgid "Total" -msgstr "" +msgstr "Hollad" #. l10n: Other, small valued, queries #: js/messages.php:72 server_status.php:602 msgid "Other" -msgstr "" +msgstr "Udb all" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1374 msgid "," -msgstr "" +msgstr " " #. l10n: Decimal separator #: js/messages.php:76 libraries/common.lib.php:1376 msgid "." -msgstr "" +msgstr "." #: js/messages.php:78 msgid "KiB sent since last refresh" -msgstr "" +msgstr "Kio treuzkaset abaoe ar freskadenn ziwezhañ" #: js/messages.php:79 msgid "KiB received since last refresh" -msgstr "" +msgstr "Kio resevet abaoe ar freskadenn ziwezhañ" #: js/messages.php:80 msgid "Server traffic (in KiB)" -msgstr "" +msgstr "Tremenerezh war ar servijer (e Kio)" #: js/messages.php:81 msgid "Connections since last refresh" -msgstr "" +msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ" #: js/messages.php:82 server_status.php:794 msgid "Processes" -msgstr "" +msgstr "Argerzhioù" #: js/messages.php:83 msgid "Connections / Processes" -msgstr "" +msgstr "Kevreadennoù/Argerzhioù" #: js/messages.php:84 msgid "Issued queries since last refresh" -msgstr "" +msgstr "Rekedoù resevet abaoe ar freskadenn ziwezhañ" #: js/messages.php:85 msgid "Issued queries" -msgstr "" +msgstr "Rekedoù resevet" #: js/messages.php:87 server_status.php:402 msgid "Query statistics" -msgstr "" +msgstr "Stadegoù war ar rekedoù" #: js/messages.php:91 libraries/tbl_properties.inc.php:777 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" -msgstr "" +msgstr "Nullañ" #: js/messages.php:94 msgid "Loading" -msgstr "" +msgstr "O kargañ" #: js/messages.php:95 msgid "Processing Request" -msgstr "" +msgstr "O plediñ gant ar reked" #: js/messages.php:96 libraries/db_events.inc.php:39 #: libraries/display_triggers.inc.php:46 libraries/import/ods.php:80 msgid "Error in Processing Request" -msgstr "" +msgstr "Fazi en ur blediñ gant ar reked" #: js/messages.php:97 msgid "Dropping Column" -msgstr "" +msgstr "Diverkañ ar bann" #: js/messages.php:98 msgid "Adding Primary Key" -msgstr "" +msgstr "Ouzhpennañ un alc'hwez kentidik" #: js/messages.php:99 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" -msgstr "" +msgstr "Mat eo" #: js/messages.php:102 msgid "Renaming Databases" -msgstr "" +msgstr "Oc'h adenvel an diaz roadennoù" #: js/messages.php:103 msgid "Reload Database" -msgstr "" +msgstr "Adkargañ an diaz roadennoù" #: js/messages.php:104 msgid "Copying Database" -msgstr "" +msgstr "Oc'h eilañ an diaz roadennoù" #: js/messages.php:105 msgid "Changing Charset" -msgstr "" +msgstr "O cheñch ar strobad arouezennoù" #: js/messages.php:106 msgid "Table must have at least one column" -msgstr "" +msgstr "Ur bann a rank bezañ en daolenn, da nebeutañ" #: js/messages.php:107 msgid "Create Table" -msgstr "" +msgstr "Krouiñ un daolenn" #: js/messages.php:112 msgid "Insert Table" -msgstr "" +msgstr "Ensoc'hañ un daolenn" #: js/messages.php:115 msgid "Searching" -msgstr "" +msgstr "O klask" #: js/messages.php:116 msgid "Hide search results" -msgstr "" +msgstr "Kuzhat disoc'hoù an enklask" #: js/messages.php:117 msgid "Show search results" -msgstr "" +msgstr "Diskouez disoc'hoù an enklask" #: js/messages.php:118 msgid "Browsing" -msgstr "" +msgstr "O furchal" #: js/messages.php:119 msgid "Deleting" -msgstr "" +msgstr "O tiverkañ" #: js/messages.php:122 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" +"Bez' e rank bezañ un embannadenn RETURN e termenadur un arc'hwel stoket" #: js/messages.php:123 msgid "Value too long in the form!" -msgstr "" +msgstr "Talvoud re hir er furmskrid !" #: js/messages.php:126 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "" +msgstr "Notenn : ma vez meur a daolenn er restr e vint unanet." #: js/messages.php:129 msgid "Hide query box" -msgstr "" +msgstr "Kuzhat ar voest rekedoù SQL" #: js/messages.php:130 msgid "Show query box" -msgstr "" +msgstr "Diskouez ar voest rekedoù SQL" #: js/messages.php:131 msgid "Inline Edit" -msgstr "" +msgstr "Kemmañ enlinenn" #: js/messages.php:133 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:313 @@ -1339,77 +1342,79 @@ msgstr "" #: setup/frames/index.inc.php:227 tbl_change.php:976 #: tbl_gis_visualization.php:222 tbl_indexes.php:253 tbl_relation.php:563 msgid "Save" -msgstr "" +msgstr "Enrollañ" #: js/messages.php:134 libraries/display_tbl.lib.php:637 pmd_general.php:158 #: tbl_change.php:316 tbl_change.php:322 msgid "Hide" -msgstr "" +msgstr "Kuzhat" #: js/messages.php:135 tbl_row_action.php:28 msgid "No rows selected" -msgstr "" +msgstr "N'eus bet diuzet linenn ebet" #: js/messages.php:136 libraries/display_tbl.lib.php:2384 querywindow.php:114 #: querywindow.php:118 querywindow.php:121 tbl_structure.php:152 #: tbl_structure.php:602 msgid "Change" -msgstr "" +msgstr "Kemmañ" #: js/messages.php:139 msgid "Hide search criteria" -msgstr "" +msgstr "Kuzhat an dezverkoù klask" #: js/messages.php:140 msgid "Show search criteria" -msgstr "" +msgstr "Diskouez an dezverkoù enklask" #: js/messages.php:143 tbl_change.php:304 tbl_indexes.php:203 #: tbl_indexes.php:230 msgid "Ignore" -msgstr "" +msgstr "Na ober van" #: js/messages.php:146 msgid "Select referenced key" -msgstr "" +msgstr "Diuzit an alc'hwez daveet" #: js/messages.php:147 msgid "Select Foreign Key" -msgstr "" +msgstr "Diuzit an alc'hwez estren" #: js/messages.php:148 msgid "Please select the primary key or a unique key" -msgstr "" +msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" #: js/messages.php:149 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" -msgstr "" +msgstr "Dibab ar bann da ziskouez" #: js/messages.php:150 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" +"N'eo ket bet enrollet ar c'hemmoù degaset d'an tres ganeoc'h. Kollet e vint " +"ma n'o enrollit ket. Kenderc'hel memes tra ?" #: js/messages.php:153 msgid "Add an option for column " -msgstr "" +msgstr "Ouzhpennañ un dibarzh evit ar bann " #: js/messages.php:156 msgid "Generate password" -msgstr "" +msgstr "Genel ur ger-tremen" #: js/messages.php:157 libraries/replication_gui.lib.php:365 msgid "Generate" -msgstr "" +msgstr "Genel" #: js/messages.php:158 msgid "Change Password" -msgstr "" +msgstr "Cheñch ger-tremen" #: js/messages.php:161 tbl_structure.php:497 msgid "More" -msgstr "" +msgstr "Muioc'h" #: js/messages.php:164 setup/lib/index.lib.php:158 #, php-format @@ -1417,25 +1422,27 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" +"Ur stumm nevesoc'h eus phpMyAdmin zo bremañ ha mat e vefe deoc'h soñjal " +"hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:166 msgid ", latest stable version:" -msgstr "" +msgstr ", stumm stabil diwezhañ" #: js/messages.php:167 msgid "up to date" -msgstr "" +msgstr "hizivaet" #. l10n: Display text for calendar close link #: js/messages.php:185 msgid "Done" -msgstr "" +msgstr "Graet" #. l10n: Display text for previous month link in calendar #: js/messages.php:187 msgid "Prev" -msgstr "" +msgstr "Kent" #. l10n: Display text for next month link in calendar #: js/messages.php:189 libraries/common.lib.php:2308 @@ -1443,331 +1450,551 @@ msgstr "" #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:937 msgid "Next" -msgstr "" +msgstr "War-lerc'h" #. l10n: Display text for current month link in calendar #: js/messages.php:191 msgid "Today" -msgstr "" +msgstr "Hiziv" #: js/messages.php:194 msgid "January" -msgstr "" +msgstr "Genver" #: js/messages.php:195 msgid "February" -msgstr "" +msgstr "C'hwevrer" #: js/messages.php:196 msgid "March" -msgstr "" +msgstr "Meurzh" #: js/messages.php:197 msgid "April" -msgstr "" +msgstr "Ebrel" #: js/messages.php:198 msgid "May" -msgstr "" +msgstr "Mae" #: js/messages.php:199 msgid "June" -msgstr "" +msgstr "Mezheven" #: js/messages.php:200 msgid "July" -msgstr "" +msgstr "Gouere" #: js/messages.php:201 msgid "August" -msgstr "" +msgstr "Eost" #: js/messages.php:202 msgid "September" -msgstr "" +msgstr "Gwengolo" #: js/messages.php:203 msgid "October" -msgstr "" +msgstr "Here" #: js/messages.php:204 msgid "November" -msgstr "" +msgstr "Du" #: js/messages.php:205 msgid "December" -msgstr "" +msgstr "Kerzu" #. l10n: Short month name #: js/messages.php:209 libraries/common.lib.php:1511 msgid "Jan" -msgstr "" +msgstr "Gen" #. l10n: Short month name #: js/messages.php:211 libraries/common.lib.php:1513 msgid "Feb" -msgstr "" +msgstr "C'hwe" #. l10n: Short month name #: js/messages.php:213 libraries/common.lib.php:1515 msgid "Mar" -msgstr "" +msgstr "Meu" #. l10n: Short month name #: js/messages.php:215 libraries/common.lib.php:1517 msgid "Apr" -msgstr "" +msgstr "Ebr" #. l10n: Short month name #: js/messages.php:217 libraries/common.lib.php:1519 msgctxt "Short month name" msgid "May" -msgstr "" +msgstr "Mae" #. l10n: Short month name #: js/messages.php:219 libraries/common.lib.php:1521 msgid "Jun" -msgstr "" +msgstr "Mezh" #. l10n: Short month name #: js/messages.php:221 libraries/common.lib.php:1523 msgid "Jul" -msgstr "" +msgstr "Goue" #. l10n: Short month name #: js/messages.php:223 libraries/common.lib.php:1525 msgid "Aug" -msgstr "" +msgstr "Eost" #. l10n: Short month name #: js/messages.php:225 libraries/common.lib.php:1527 msgid "Sep" -msgstr "" +msgstr "Gwen" #. l10n: Short month name #: js/messages.php:227 libraries/common.lib.php:1529 msgid "Oct" -msgstr "" +msgstr "Here" #. l10n: Short month name #: js/messages.php:229 libraries/common.lib.php:1531 msgid "Nov" -msgstr "" +msgstr "Du" #. l10n: Short month name #: js/messages.php:231 libraries/common.lib.php:1533 msgid "Dec" -msgstr "" +msgstr "Kzu" #: js/messages.php:234 msgid "Sunday" -msgstr "" +msgstr "Sul" #: js/messages.php:235 msgid "Monday" -msgstr "" +msgstr "Lun" #: js/messages.php:236 msgid "Tuesday" -msgstr "" +msgstr "Meurzh" #: js/messages.php:237 msgid "Wednesday" -msgstr "" +msgstr "Merc'her" #: js/messages.php:238 msgid "Thursday" -msgstr "" +msgstr "Yaou" #: js/messages.php:239 msgid "Friday" -msgstr "" +msgstr "Gwener" #: js/messages.php:240 msgid "Saturday" -msgstr "" +msgstr "Sadorn" #. l10n: Short week day name #: js/messages.php:244 libraries/common.lib.php:1536 msgid "Sun" -msgstr "" +msgstr "Sul" #. l10n: Short week day name #: js/messages.php:246 libraries/common.lib.php:1538 msgid "Mon" -msgstr "" +msgstr "Lun" #. l10n: Short week day name #: js/messages.php:248 libraries/common.lib.php:1540 msgid "Tue" -msgstr "" +msgstr "Meu" #. l10n: Short week day name #: js/messages.php:250 libraries/common.lib.php:1542 msgid "Wed" -msgstr "" +msgstr "Mer" #. l10n: Short week day name #: js/messages.php:252 libraries/common.lib.php:1544 msgid "Thu" -msgstr "" +msgstr "Yaou" #. l10n: Short week day name #: js/messages.php:254 libraries/common.lib.php:1546 msgid "Fri" -msgstr "" +msgstr "Gwe" #. l10n: Short week day name #: js/messages.php:256 libraries/common.lib.php:1548 msgid "Sat" -msgstr "" +msgstr "Sad" #. l10n: Minimal week day name #: js/messages.php:260 msgid "Su" -msgstr "" +msgstr "Su" #. l10n: Minimal week day name #: js/messages.php:262 msgid "Mo" -msgstr "" +msgstr "L" #. l10n: Minimal week day name #: js/messages.php:264 msgid "Tu" -msgstr "" +msgstr "Mz" #. l10n: Minimal week day name #: js/messages.php:266 msgid "We" -msgstr "" +msgstr "Mc" #. l10n: Minimal week day name #: js/messages.php:268 msgid "Th" -msgstr "" +msgstr "Y" #. l10n: Minimal week day name #: js/messages.php:270 msgid "Fr" -msgstr "" +msgstr "G" #. l10n: Minimal week day name #: js/messages.php:272 msgid "Sa" -msgstr "" +msgstr "Sa" #. l10n: Column header for week of the year in calendar #: js/messages.php:274 msgid "Wk" -msgstr "" +msgstr "Sizh." #: js/messages.php:276 msgid "Hour" -msgstr "" +msgstr "Eur" #: js/messages.php:277 msgid "Minute" -msgstr "" +msgstr "Munut" #: js/messages.php:278 msgid "Second" -msgstr "" - -#: libraries/auth/config.auth.lib.php:76 -msgid "Cannot connect: invalid settings." -msgstr "" +msgstr "Eilenn" -#: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64 -#, php-format -msgid "Welcome to %s" -msgstr "" +#: libraries/Config.class.php:1190 +msgid "Font size" +msgstr "Ment an destenn" -#: libraries/auth/config.auth.lib.php:106 -#, php-format -msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +#: libraries/File.class.php:310 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar " +"c'hemennad upload_max_filesize directive e php.ini." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/File.class.php:313 msgid "" -"phpMyAdmin tried to connect to the MySQL server, and the server rejected the " -"connection. You should check the host, username and password in your " -"configuration and make sure that they correspond to the information given by " -"the administrator of the MySQL server." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" +"Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar " +"c'hemennad MAX_FILE_SIZE spisaet er furmskrid HTML." -#: libraries/auth/cookie.auth.lib.php:225 -msgid "Log in" -msgstr "" +#: libraries/File.class.php:316 +msgid "The uploaded file was only partially uploaded." +msgstr "Hanter bellgarget eo bet ar restr nemetken." -#: libraries/auth/cookie.auth.lib.php:227 -#: libraries/auth/cookie.auth.lib.php:229 -#: libraries/navigation_header.inc.php:95 -#: libraries/navigation_header.inc.php:99 -msgid "phpMyAdmin documentation" -msgstr "" +#: libraries/File.class.php:319 +msgid "Missing a temporary folder." +msgstr "Mankout a ra ur c'havlec'h padennek." -#: libraries/auth/cookie.auth.lib.php:239 -#: libraries/auth/cookie.auth.lib.php:240 -msgid "You can enter hostname/IP address and port separated by space." -msgstr "" +#: libraries/File.class.php:322 +msgid "Failed to write file to disk." +msgstr "Fazi en ur skrivañ ar restr war ar bladenn." -#: libraries/auth/cookie.auth.lib.php:239 -msgid "Server:" -msgstr "" +#: libraries/File.class.php:325 +msgid "File upload stopped by extension." +msgstr "Harzet eo bet ar pellgargañ gant an astenn." -#: libraries/auth/cookie.auth.lib.php:244 -msgid "Username:" -msgstr "" +#: libraries/File.class.php:328 +msgid "Unknown error in file upload." +msgstr "Fazi dianav en ur bellgargañ ar restr." -#: libraries/auth/cookie.auth.lib.php:248 -msgid "Password:" +#: libraries/File.class.php:559 +msgid "" +"Error moving the uploaded file, see [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" +"Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/auth/cookie.auth.lib.php:255 -msgid "Server Choice" -msgstr "" +#: libraries/Index.class.php:430 tbl_relation.php:526 +msgid "No index defined!" +msgstr "N'eus bet termenet meneger ebet !" -#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86 -msgid "Cookies must be enabled past this point." -msgstr "" +#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40 +#: tbl_tracking.php:309 +msgid "Indexes" +msgstr "Menegerioù" -#: libraries/auth/cookie.auth.lib.php:639 -#: libraries/auth/signon.auth.lib.php:234 -msgid "" -"Login without a password is forbidden by configuration (see AllowNoPassword)" -msgstr "" +#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 +#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 +#: tbl_tracking.php:315 +msgid "Unique" +msgstr "Dibar" -#: libraries/auth/cookie.auth.lib.php:643 -#: libraries/auth/signon.auth.lib.php:238 -#, php-format -msgid "No activity within %s seconds; please log in again" -msgstr "" +#: libraries/Index.class.php:447 tbl_tracking.php:316 +msgid "Packed" +msgstr "Gwasket" -#: libraries/auth/cookie.auth.lib.php:653 -#: libraries/auth/cookie.auth.lib.php:655 -#: libraries/auth/signon.auth.lib.php:244 -msgid "Cannot log in to the MySQL server" -msgstr "" +#: libraries/Index.class.php:449 tbl_tracking.php:318 +msgid "Cardinality" +msgstr "Kardinalegezh" -#: libraries/auth/http.auth.lib.php:69 -msgid "Wrong username/password. Access denied." -msgstr "" +#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777 +#: tbl_tracking.php:272 tbl_tracking.php:321 +msgid "Comment" +msgstr "Evezhiadenn" -#: libraries/auth/signon.auth.lib.php:87 -msgid "Can not find signon authentication script:" -msgstr "" +#: libraries/Index.class.php:474 +msgid "The primary key has been dropped" +msgstr "Diverket eo bet an alc'hwez kentidik" -#: libraries/auth/swekey/swekey.auth.lib.php:118 +#: libraries/Index.class.php:478 #, php-format -msgid "File %s does not contain any key id" -msgstr "" +msgid "Index %s has been dropped" +msgstr "Diverket eo bet ar meneger %s." -#: libraries/auth/swekey/swekey.auth.lib.php:157 -#: libraries/auth/swekey/swekey.auth.lib.php:180 +#: libraries/Index.class.php:582 +#, php-format +msgid "" +"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " +"removed." +msgstr "" +"Evit doare eo kevatal an menegerioù %1$s ha %2$s hag unan anezho a c'hallfe " +"bezañ dilamet." + +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177 +#: libraries/server_links.inc.php:43 server_databases.php:100 +#: server_privileges.php:1740 +msgid "Databases" +msgstr "Diazoù roadennoù" + +#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308 +#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883 +#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60 +msgid "Error" +msgstr "Fazi" + +#: libraries/Message.class.php:260 +#, php-format +msgid "%1$d row affected." +msgid_plural "%1$d rows affected." +msgstr[0] "%1$d linenn tizhet." +msgstr[1] "%1$d linenn tizhet." + +#: libraries/Message.class.php:279 +#, php-format +msgid "%1$d row deleted." +msgid_plural "%1$d rows deleted." +msgstr[0] "%1$d linenn diverket." +msgstr[1] "%1$d linenn diverket." + +#: libraries/Message.class.php:298 +#, php-format +msgid "%1$d row inserted." +msgid_plural "%1$d rows inserted." +msgstr[0] "%1$d linenn ensoc'het." +msgstr[1] "%1$d linenn ensoc'het." + +#: libraries/RecentTable.class.php:114 +msgid "Could not save recent table" +msgstr "N'eus ket bet gallet enrollañ an daolenn envez" + +#: libraries/RecentTable.class.php:149 +msgid "Recent tables" +msgstr "Taolennoù nevez" + +#: libraries/RecentTable.class.php:155 +msgid "There are no recent tables" +msgstr "N'eus taolenn nevez ebet" + +#: libraries/StorageEngine.class.php:195 +msgid "" +"There is no detailed status information available for this storage engine." +msgstr "N'eus tamm titour dre ar munud ebet evit al lusker stokañ-mañ." + +#: libraries/StorageEngine.class.php:355 +#, php-format +msgid "%s is available on this MySQL server." +msgstr "Hegerz eo %s war ar servijer MySQL-mañ." + +#: libraries/StorageEngine.class.php:358 +#, php-format +msgid "%s has been disabled for this MySQL server." +msgstr "Diweredekaet eo bet %s war ar servijer MySQL-mañ." + +#: libraries/StorageEngine.class.php:362 +#, fuzzy, php-format +msgid "This MySQL server does not support the %s storage engine." +msgstr "N'eo ket skoret al lusker stokañ gant ar servijer MySQL-mañ." + +#: libraries/Table.class.php:1027 +msgid "Invalid database" +msgstr "Diaz roadennoù direizh" + +#: libraries/Table.class.php:1041 tbl_get_field.php:25 +msgid "Invalid table name" +msgstr "Anv taolenn direizh" + +#: libraries/Table.class.php:1056 +#, php-format +msgid "Error renaming table %1$s to %2$s" +msgstr "Fazi en ur adenvel %1$s e %2$s" + +#: libraries/Table.class.php:1139 +#, php-format +msgid "Table %s has been renamed to %s" +msgstr "Anv an daolenn %s zo %s bremañ" + +#: libraries/Table.class.php:1272 +msgid "Could not save table UI preferences" +msgstr "N'eus ket bet gallet enrollañ dibaboù etrefas an taolennoù" + +#: libraries/Theme.class.php:160 +#, php-format +msgid "No valid image path for theme %s found!" +msgstr "N'eus ket eus un hent reizh evit skeudennoù an tem %s !" + +#: libraries/Theme.class.php:380 +msgid "No preview available." +msgstr "N'haller ket rakwelet." + +#: libraries/Theme.class.php:383 +msgid "take it" +msgstr "tapit-eñ" + +#: libraries/Theme_Manager.class.php:109 +#, php-format +msgid "Default theme %s not found!" +msgstr "N'eo ket bet kavet an tem dre ziouer %s !" + +#: libraries/Theme_Manager.class.php:147 +#, php-format +msgid "Theme %s not found!" +msgstr "N'eo ket bet kavet an tem %s !" + +#: libraries/Theme_Manager.class.php:215 +#, php-format +msgid "Theme path not found for theme %s!" +msgstr "N'eo ket bet kavet an hent evit an tem %s !" + +#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 +msgid "Theme" +msgstr "Tem" + +#: libraries/auth/config.auth.lib.php:76 +msgid "Cannot connect: invalid settings." +msgstr "Dibosupl kevreañ : arventennoù direizh." + +#: libraries/auth/config.auth.lib.php:91 +#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64 +#, php-format +msgid "Welcome to %s" +msgstr "Degemer mat e %s" + +#: libraries/auth/config.auth.lib.php:106 +#, php-format +msgid "" +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." +msgstr "" +"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar " +"%1$sskript kefluniañ%2$s da sevel unan." + +#: libraries/auth/config.auth.lib.php:115 +msgid "" +"phpMyAdmin tried to connect to the MySQL server, and the server rejected the " +"connection. You should check the host, username and password in your " +"configuration and make sure that they correspond to the information given by " +"the administrator of the MySQL server." +msgstr "" +"Klasket en deus phpMyAdmin kevreañ ouzh ar servijer MySQL ha nac'het eo bet " +"ar gevreadenn gantañ. Gwiriit mat talvoudoù an ostiz, an anv implijer hag ar " +"ger-tremen en ho kefluniadur ha bezit sur e klotont gant an titouroù " +"pourchaset gant merour ar servijer MySQL." + +#: libraries/auth/cookie.auth.lib.php:225 +msgid "Log in" +msgstr "Kevreañ" + +#: libraries/auth/cookie.auth.lib.php:227 +#: libraries/auth/cookie.auth.lib.php:229 +#: libraries/navigation_header.inc.php:95 +#: libraries/navigation_header.inc.php:99 +msgid "phpMyAdmin documentation" +msgstr "Teuliadur phpMyAdmin" + +#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:240 +msgid "You can enter hostname/IP address and port separated by space." +msgstr "" +"Gallout a rit merkañ anv ar servijer pe e chomlec'h IP, gant ar porzh " +"dispartiet dre un esaouenn." + +#: libraries/auth/cookie.auth.lib.php:239 +msgid "Server:" +msgstr "Servijer : " + +#: libraries/auth/cookie.auth.lib.php:244 +msgid "Username:" +msgstr "Anv implijer : " + +#: libraries/auth/cookie.auth.lib.php:248 +msgid "Password:" +msgstr "Ger-tremen : " + +#: libraries/auth/cookie.auth.lib.php:255 +msgid "Server Choice" +msgstr "Dibab ar servijer" + +#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86 +msgid "Cookies must be enabled past this point." +msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." + +#: libraries/auth/cookie.auth.lib.php:639 +#: libraries/auth/signon.auth.lib.php:234 +msgid "" +"Login without a password is forbidden by configuration (see AllowNoPassword)" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:643 +#: libraries/auth/signon.auth.lib.php:238 +#, php-format +msgid "No activity within %s seconds; please log in again" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 +#: libraries/auth/signon.auth.lib.php:244 +msgid "Cannot log in to the MySQL server" +msgstr "" + +#: libraries/auth/http.auth.lib.php:69 +msgid "Wrong username/password. Access denied." +msgstr "" + +#: libraries/auth/signon.auth.lib.php:87 +msgid "Can not find signon authentication script:" +msgstr "" + +#: libraries/auth/swekey/swekey.auth.lib.php:118 +#, php-format +msgid "File %s does not contain any key id" +msgstr "" + +#: libraries/auth/swekey/swekey.auth.lib.php:157 +#: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" msgstr "" @@ -1787,14 +2014,6 @@ msgstr "" msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314 -#: libraries/common.lib.php:561 libraries/core.lib.php:232 -#: libraries/import.lib.php:136 libraries/Message.class.php:205 -#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287 -#: view_operations.php:60 -msgid "Error" -msgstr "" - #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" msgstr "" @@ -1847,11 +2066,6 @@ msgstr "" msgid "Data" msgstr "" -#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435 -#: tbl_tracking.php:309 -msgid "Indexes" -msgstr "" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:818 msgid "Overhead" @@ -2128,8 +2342,76 @@ msgstr "" msgid "Execute" msgstr "" -#: libraries/Config.class.php:1190 -msgid "Font size" +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 +msgid "Both" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 +msgid "Open" +msgstr "" + +#: libraries/config.values.php:75 +msgid "Closed" +msgstr "" + +#: libraries/config.values.php:96 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:122 libraries/export/texytext.php:24 +#: libraries/import.lib.php:1172 +msgid "structure" +msgstr "" + +#: libraries/config.values.php:97 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:123 libraries/export/texytext.php:24 +msgid "data" +msgstr "" + +#: libraries/config.values.php:98 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:124 libraries/export/texytext.php:24 +msgid "structure and data" +msgstr "" + +#: libraries/config.values.php:100 +msgid "Quick - display only the minimal options to configure" +msgstr "" + +#: libraries/config.values.php:101 +msgid "Custom - display all possible options to configure" +msgstr "" + +#: libraries/config.values.php:102 +msgid "Custom - like above, but without the quick/custom choice" +msgstr "" + +#: libraries/config.values.php:120 +msgid "complete inserts" +msgstr "" + +#: libraries/config.values.php:121 +msgid "extended inserts" +msgstr "" + +#: libraries/config.values.php:122 +msgid "both of the above" +msgstr "" + +#: libraries/config.values.php:123 +msgid "neither of the above" msgstr "" #: libraries/config/FormDisplay.class.php:83 @@ -2760,12 +3042,6 @@ msgstr "" msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430 -#: libraries/server_links.inc.php:43 server_databases.php:100 -#: server_privileges.php:1740 -msgid "Databases" -msgstr "" - #: libraries/config/messages.inc.php:178 msgid "Databases display options" msgstr "" @@ -4233,78 +4509,6 @@ msgstr "" msgid "Incorrect IP address: %s" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:47 -#: libraries/config.values.php:51 -msgid "Both" -msgstr "" - -#: libraries/config.values.php:47 -msgid "Nowhere" -msgstr "" - -#: libraries/config.values.php:47 -msgid "Left" -msgstr "" - -#: libraries/config.values.php:47 -msgid "Right" -msgstr "" - -#: libraries/config.values.php:75 -msgid "Open" -msgstr "" - -#: libraries/config.values.php:75 -msgid "Closed" -msgstr "" - -#: libraries/config.values.php:96 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:122 libraries/export/texytext.php:24 -#: libraries/import.lib.php:1172 -msgid "structure" -msgstr "" - -#: libraries/config.values.php:97 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:123 libraries/export/texytext.php:24 -msgid "data" -msgstr "" - -#: libraries/config.values.php:98 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:124 libraries/export/texytext.php:24 -msgid "structure and data" -msgstr "" - -#: libraries/config.values.php:100 -msgid "Quick - display only the minimal options to configure" -msgstr "" - -#: libraries/config.values.php:101 -msgid "Custom - display all possible options to configure" -msgstr "" - -#: libraries/config.values.php:102 -msgid "Custom - like above, but without the quick/custom choice" -msgstr "" - -#: libraries/config.values.php:120 -msgid "complete inserts" -msgstr "" - -#: libraries/config.values.php:121 -msgid "extended inserts" -msgstr "" - -#: libraries/config.values.php:122 -msgid "both of the above" -msgstr "" - -#: libraries/config.values.php:123 -msgid "neither of the above" -msgstr "" - #. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. #: libraries/core.lib.php:264 msgctxt "PHP documentation language" @@ -4368,23 +4572,6 @@ msgstr "" msgid "Add an event" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 -msgid "Connection for controluser as defined in your configuration failed." -msgstr "" - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 -#: libraries/dbi/mysqli.dbi.lib.php:395 -msgid "The server is not responding" -msgstr "" - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - -#: libraries/dbi/mysql.dbi.lib.php:346 -msgid "Details..." -msgstr "" - #: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 #: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" @@ -4452,9 +4639,9 @@ msgstr "" #: libraries/export/php_array.php:29 libraries/export/sql.php:83 #: libraries/export/texytext.php:31 libraries/export/xls.php:29 #: libraries/export/xlsx.php:29 libraries/export/xml.php:25 -#: libraries/export/yaml.php:30 libraries/import/csv.php:33 +#: libraries/export/yaml.php:30 libraries/import.lib.php:1145 +#: libraries/import.lib.php:1167 libraries/import/csv.php:33 #: libraries/import/docsql.php:35 libraries/import/ldi.php:49 -#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/ods.php:32 libraries/import/sql.php:20 #: libraries/import/xls.php:28 libraries/import/xlsx.php:28 #: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889 @@ -4501,11 +4688,6 @@ msgstr "" msgid "SQL data access" msgstr "" -#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452 -#: tbl_tracking.php:272 tbl_tracking.php:321 -msgid "Comment" -msgstr "" - #: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842 msgid "Routine parameters" msgstr "" @@ -4562,6 +4744,23 @@ msgid "" "3.11[/a]" msgstr "" +#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 +msgid "Connection for controluser as defined in your configuration failed." +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 +#: libraries/dbi/mysqli.dbi.lib.php:395 +msgid "The server is not responding" +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:346 +msgid "Details..." +msgstr "" + #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 msgid "Change password" @@ -4700,8 +4899,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5391,8 +5590,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5673,57 +5872,55 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/File.class.php:310 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +#: libraries/footer.inc.php:188 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 +msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/File.class.php:313 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: libraries/gis_visualization.lib.php:129 +msgid "No data found for GIS visualization." msgstr "" -#: libraries/File.class.php:316 -msgid "The uploaded file was only partially uploaded." +#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54 +msgid "SQL result" msgstr "" -#: libraries/File.class.php:319 -msgid "Missing a temporary folder." +#: libraries/header_printview.inc.php:59 +msgid "Generated by" msgstr "" -#: libraries/File.class.php:322 -msgid "Failed to write file to disk." +#: libraries/import.lib.php:1141 +msgid "" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/File.class.php:325 -msgid "File upload stopped by extension." +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/File.class.php:328 -msgid "Unknown error in file upload." +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/File.class.php:559 -msgid "" -"Error moving the uploaded file, see [a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a]" +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/footer.inc.php:188 libraries/footer.inc.php:191 -#: libraries/footer.inc.php:194 -msgid "Open new phpMyAdmin window" +#: libraries/import.lib.php:1147 +msgid "Go to database" msgstr "" -#: libraries/gis_visualization.lib.php:129 -msgid "No data found for GIS visualization." +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" msgstr "" -#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54 -msgid "SQL result" +#: libraries/import.lib.php:1169 +msgid "Go to table" msgstr "" -#: libraries/header_printview.inc.php:59 -msgid "Generated by" +#: libraries/import.lib.php:1178 +msgid "Go to view" msgstr "" #: libraries/import/csv.php:38 libraries/import/ods.php:26 @@ -5785,40 +5982,6 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -5841,40 +6004,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -5885,27 +6014,6 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "" @@ -6144,18 +6252,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "" @@ -6525,57 +6621,6 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6631,53 +6676,62 @@ msgstr "" msgid "web server upload directory" msgstr "" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" msgstr "" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" msgstr "" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" msgstr "" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -6784,38 +6838,6 @@ msgstr "" msgid "+ Add a value" msgstr "" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7764,8 +7786,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/bs.po b/po/bs.po index e5119b32243c..92c90b6bd354 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "Pretraživanje" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Kreni" @@ -119,7 +119,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Komentar baze:" @@ -129,9 +129,9 @@ msgstr "Komentar baze:" msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "Komentari tabele" msgid "Column" msgstr "Imena kolona" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "Imena kolona" msgid "Type" msgstr "Tip" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "Komentari" msgid "No" msgstr "Ne" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,84 +261,84 @@ msgstr "ništa" msgid "The database name is empty!" msgstr "Ima tabele je prazno!" -#: db_operations.php:271 +#: db_operations.php:272 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabeli %s promjenjeno ime u %s" -#: db_operations.php:275 +#: db_operations.php:276 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabela %s je kopirana u %s." -#: db_operations.php:403 +#: db_operations.php:404 #, fuzzy msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Naredba" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy msgid "Remove database" msgstr "Promjeni ime tabele u " -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Baza ne postoji" -#: db_operations.php:486 +#: db_operations.php:487 #, fuzzy msgid "Copy database to" msgstr "Baza ne postoji" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktura i podatci" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "" -#: db_operations.php:527 +#: db_operations.php:528 #, fuzzy msgid "Switch to copied database" msgstr "Pređi na kopiranu tabelu" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -348,7 +347,7 @@ msgstr "Pređi na kopiranu tabelu" msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -360,7 +359,7 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -513,102 +512,102 @@ msgstr "SQL upit na bazi %s:" msgid "Submit Query" msgstr "Izvrši SQL upit" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL kaže: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Tabele nisu pronađene u bazi." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabela %s je odbačena" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabela %s je odbačena" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Verzija servera" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " @@ -6141,41 +6316,6 @@ msgstr "Imena kolona" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Baza ne postoji" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6198,40 +6338,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Ključ nije definisan!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Jedinstveni" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinalnost" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primarni ključ je obrisan" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Ključ %s je obrisan" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6244,27 +6350,6 @@ msgstr "nema" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6513,19 +6598,6 @@ msgstr "" msgid "This format has no options" msgstr "Ne postoje opcije za ovaj format" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Nema tabela" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "nije u redu" @@ -6918,68 +6990,6 @@ msgstr "" msgid "Target database" msgstr "Pretraživanje baze" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Izgleda da postoji greška u vašem SQL upitu. Ovde je poruka o greški MySQL " -"servera, koja vam može pomoći u otkrivanju problema" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Postoji mogućnost da ste pronašli gresku u SQL parseru. Molimo ispitajte " -"svoj upit pažljivo, i provjerite da su navodnici ispravni i da ne nedostaju. " -"Ostali mogući razlozi greške mogu biti da ste poslali binarni fajl van " -"oblasti za običan tekst. Možete probati svoj upit u MySQL interfejsu " -"komandne linije. Donja poruka o grešci MySQL servera, ako je ima, može vam " -"pomoći u otkrivanju problema. Ako i dalje imate probleme ili ako parser ne " -"uspjeva tamo gde uspeva interfejs komandne linije, svedite svoj SQL upit na " -"jedan jedini upit koji stvara probleme i pošaljite nam izvještaj o grešci sa " -"delom koda u donjoj REZ sekciji:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "POČETAK REZ" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "KRAJ REZ" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "POČETAK SIROVO" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "KRAJ SIROVO" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Navodnik nije zatvoren" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Neispravan identifikator" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Nepoznat string interpunkcije" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -7037,56 +7047,76 @@ msgstr "Lokacija tekstualne datoteke" msgid "web server upload directory" msgstr "direkcija za slanje web servera " -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " -"neophodne PHP ekstenzije opisane u %sdokumentaciji%s." +"Izgleda da postoji greška u vašem SQL upitu. Ovde je poruka o greški MySQL " +"servera, koja vam može pomoći u otkrivanju problema" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" +"Postoji mogućnost da ste pronašli gresku u SQL parseru. Molimo ispitajte " +"svoj upit pažljivo, i provjerite da su navodnici ispravni i da ne nedostaju. " +"Ostali mogući razlozi greške mogu biti da ste poslali binarni fajl van " +"oblasti za običan tekst. Možete probati svoj upit u MySQL interfejsu " +"komandne linije. Donja poruka o grešci MySQL servera, ako je ima, može vam " +"pomoći u otkrivanju problema. Ako i dalje imate probleme ili ako parser ne " +"uspjeva tamo gde uspeva interfejs komandne linije, svedite svoj SQL upit na " +"jedan jedini upit koji stvara probleme i pošaljite nam izvještaj o grešci sa " +"delom koda u donjoj REZ sekciji:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "POČETAK REZ" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "KRAJ REZ" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "POČETAK SIROVO" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "KRAJ SIROVO" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Navodnik nije zatvoren" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabeli %s promjenjeno ime u %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Neispravan identifikator" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Nepoznat string interpunkcije" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " +"neophodne PHP ekstenzije opisane u %sdokumentaciji%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7216,38 +7246,6 @@ msgstr "" msgid "+ Add a value" msgstr "Dodaj novog korisnika" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8322,8 +8320,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/ca.po b/po/ca.po index 7a1c3a253aa1..2b373daffd90 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Cerca" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Executa" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "S'ha creat la base de dades %1$s." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Comentaris de la base de dades: " @@ -132,9 +132,9 @@ msgstr "Comentaris de la base de dades: " msgid "Table comments" msgstr "Comentaris de la taula" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Comentaris de la taula" msgid "Column" msgstr "Columna" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Columna" msgid "Type" msgstr "Tipus" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Enllaços a" msgid "Comments" msgstr "Comentaris" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Comentaris" msgid "No" msgstr "No" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Desmarca tot" msgid "The database name is empty!" msgstr "El nom de la base de dades és buit!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Base de dades %s reanomenada a %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "La base de dades %s s'ha copiat a %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Ordre" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Elimina la base de dades" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "La base de dades %s s'ha eliminat." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Esborra la base de dades (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Còpia base de dades a" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Només l'estructura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Estructura i dades" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Només dades" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Afegeix restriccions" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Canvia a la base de dades copiada" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Canvia a la base de dades copiada" msgid "Collation" msgstr "Ordenació" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "S'ha desactivat l' emmagatzemament de la configuració de phpMyAdmin. Per " "veure el motiu, clica %saqui%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Edita o exporta l'esquema relacional" @@ -498,110 +497,110 @@ msgstr "Consulta SQL a la base de dades %s:" msgid "Submit Query" msgstr "Executa consulta" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "La vostra comanda SQL ha estat executada amb èxit" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Permet executar rutines enmagatzemades." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Les següents consultes s'han executat:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL diu: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Error a la petició de procés" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Base de dades sense taules" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Predeterminats d'exportació" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Index de servidor invàlid: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "S'ha esborrat la columna %s" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "S'ha creat la taula %1$s." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Crea una relació" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Mode d'edició" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" -"La primera línia de l'arxiu conté els noms de les columnes de la taula " -"(si no es marca això, la primera línia formarà part de les dades)" +"The following structures have either been created or altered. Here you can:" +msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" +"Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç " +"\"Opcions\"" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\"" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Vés a la base de dades" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "configuració" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Vés a la taula" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Vés a la vista" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"La primera línia de l'arxiu conté els noms de les columnes de la taula " +"(si no es marca això, la primera línia formarà part de les dades)" + +#: libraries/import/csv.php:40 msgid "" "If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " @@ -6249,42 +6434,6 @@ msgstr "Nom de les columnes" msgid "This plugin does not support compressed imports!" msgstr "Aquesta extensió no suporta importacions comprimides!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç " -"\"Opcions\"" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\"" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Vés a la base de dades" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "configuració" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Vés a la taula" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Vés a la vista" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6310,42 +6459,6 @@ msgstr "" "El fitxer XML especificat era incorrecte o incomplet. Si us plau, arreglar-" "lo i torna a intentar-ho." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "No s'ha definit l'índex!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Única" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Comprimit" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinalitat" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "S'ha esborrat la clau principal" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "S'ha esborrat l'índex %s" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria " -"esborrar." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6356,27 +6469,6 @@ msgstr "Cap" msgid "Convert to Kana" msgstr "Converteix a Kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d fila afectada." -msgstr[1] "%1$d files afectades." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d fila esborrada." -msgstr[1] "%1$d files esborrades." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d fila inserida." -msgstr[1] "%1$d files inserides." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6619,24 +6711,6 @@ msgstr "Recarrega el marc de navegació" msgid "This format has no options" msgstr "Aquest format no té opcions" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not save configuration" -msgid "Could not save recent table" -msgstr "No es pot desar la configuració" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Comptar les taules" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "No hi ha servidors configurats" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Incorrecte" @@ -7022,6 +7096,61 @@ msgstr "Diferència" msgid "Target database" msgstr "Base de dades destinació" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Executar consulta/es SQL al servidor %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Executa consulta/s SQL a la Base de Dades %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Neteja" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Columnes" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Desa aquesta consulta SQL" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Deixa accedir a cada usuari a aquesta consulta desada" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Reemplaça una consulta desada ja existent amb el mateix nom" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "No sobreescriure aquesta consulta des de fora de la finestra" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Separador" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Mostra aquesta consulta de nou " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Només mirar" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Ubicació de l'arxiu de text" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "directori de pujada d'arxius del servidor web" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7085,61 +7214,6 @@ msgstr "Identificador Incorrecte" msgid "Unknown Punctuation String" msgstr "Signe de puntuació desconegut" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Executar consulta/es SQL al servidor %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Executa consulta/s SQL a la Base de Dades %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Neteja" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Columnes" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Desa aquesta consulta SQL" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Deixa accedir a cada usuari a aquesta consulta desada" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Reemplaça una consulta desada ja existent amb el mateix nom" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "No sobreescriure aquesta consulta des de fora de la finestra" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Separador" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Mostra aquesta consulta de nou " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Només mirar" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Ubicació de l'arxiu de text" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "directori de pujada d'arxius del servidor web" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7147,52 +7221,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu " -"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" -"sdocumentació%s." - -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"No hi ha informació detallada de l'estat disponible per a aquest motor " -"d'emmagatzematge." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s està disponible en aquest servidor MySQL." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s s'ha desactivat en aquest servidor MySQL." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Base de dades incorrecte" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Nom de taula incorrecte" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Error reanomenant la taula %1$s a %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "La taula %s ha canviat de nom a %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la " +"%sdocumentació%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7314,38 +7344,6 @@ msgstr "Definició de PARTICIÓ" msgid "+ Add a value" msgstr "+ Afegir un nou valor" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "El camí de les imatges del tema %s és incorrecte!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "No hi ha vista prèvia disponible." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "agafa" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Tema per defecte %s no trobat!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s no trobat!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "No s'ha trobat el camí de les imatges del tema %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8393,8 +8391,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " "permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " @@ -9959,8 +9957,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%" -"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " +"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store" +"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " "igual a ell." #: setup/lib/index.lib.php:266 @@ -9988,8 +9986,8 @@ msgstr "" "Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom " "d'usuari i la contrasenya per connexions automàtiques, que es una opció no " "recomanable per a servidors actius. Qualsevol que conegui la teva URL de " -"phpMyAdmin pot accedir al teu panel directament. Estableix el %" -"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin pot accedir al teu panel directament. Estableix el " +"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/cs.po b/po/cs.po index 2f394636eea3..f3d8ffb49701 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-24 13:53+0200\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-27 11:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -48,13 +48,13 @@ msgstr "" msgid "Search" msgstr "Vyhledávání" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -67,18 +67,18 @@ msgstr "Vyhledávání" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Proveď" @@ -124,7 +124,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Komentář k databázi: " @@ -134,9 +134,9 @@ msgstr "Komentář k databázi: " msgid "Table comments" msgstr "Komentář k tabulce" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -145,12 +145,12 @@ msgstr "Komentář k tabulce" msgid "Column" msgstr "Pole" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -160,9 +160,9 @@ msgstr "Pole" msgid "Type" msgstr "Typ" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -200,13 +200,12 @@ msgstr "Odkazuje na" msgid "Comments" msgstr "Komentáře" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -217,17 +216,17 @@ msgstr "Komentáře" msgid "No" msgstr "Ne" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -264,79 +263,79 @@ msgstr "Odznačit vše" msgid "The database name is empty!" msgstr "Jméno databáze je prázdné!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databáze %s byla přejmenována na %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Databáze %s byla zkopírována na %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Příkaz" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Odstranit databázi" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Databáze %s byla zrušena." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Odstranit databázi (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Zkopírovat databázi na" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Pouze strukturu" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Strukturu a data" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Jen data" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Přidat integritní omezení" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Přepnout na zkopírovanou databázi" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -345,7 +344,7 @@ msgstr "Přepnout na zkopírovanou databázi" msgid "Collation" msgstr "Porovnávání" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -354,7 +353,7 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Upravit nebo exportovat relační schéma" @@ -501,14 +500,14 @@ msgstr "SQL dotaz na databázi %s:" msgid "Submit Query" msgstr "Provést dotaz" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Váš SQL-dotaz byl úspěšně vykonán" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -516,88 +515,91 @@ msgstr[0] "Posledním příkazem v proceduře byla ovlivněna %d řádka" msgstr[1] "Posledním příkazem v proceduře byly ovlivněny %d řádky" msgstr[2] "Posledním příkazem v proceduře bylo ovlivněno %d řádek" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "Výsledek spuštění rutiny %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "Následující dotaz selhal: „%s“" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL hlásí: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "Chyba při zpracování požadavku" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, php-format msgid "No routine with name %1$s found in database %2$s" msgstr "V databázi %2$s není žádná rutina se jménem %1$s" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "Spustit rutinu" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "Export rutiny %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Chybný typ rutiny: „%s“" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "Bohužel se nepodařilo obnovit odstraněnou rutinu." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "Záložní dotaz byl:" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "Byla změněna rutina %1$s." -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "Byla vytvořena rutina %1$s." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "Při zpracování požadavku došlo k několika chybám:" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "Vytvořit rutinu" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "Upravit rutinu" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail! Please use the improved 'mysqli' extension to avoid any problems." msgstr "" +"Používáte zastaralé rozšíření „mysql“, které neumí pracovat se složenými " +"dotazy.Spouštění některých rutin může selhat! Pokud se chcete těmto " +"problémům vyhnout, začněte, prosím, používat nové rozšíření „mysqli“." #: db_search.php:54 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 @@ -720,8 +722,8 @@ msgstr "Sledování není zapnuté." #: db_structure.php:372 libraries/display_tbl.lib.php:2235 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." @@ -789,8 +791,8 @@ msgstr "Náhled pro tisk" msgid "Empty" msgstr "Vyprázdnit" -#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956 -#: libraries/common.lib.php:2957 libraries/Index.class.php:490 +#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490 +#: libraries/common.lib.php:2956 libraries/common.lib.php:2957 #: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154 #: tbl_structure.php:603 msgid "Drop" @@ -863,9 +865,9 @@ msgstr "Aktualizováno" msgid "Status" msgstr "Stav" -#: db_tracking.php:90 libraries/db_events.inc.php:68 -#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44 -#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442 +#: db_tracking.php:90 libraries/Index.class.php:442 +#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215 +#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76 #: server_databases.php:191 server_privileges.php:1612 #: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214 msgid "Action" @@ -959,8 +961,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -1139,11 +1141,11 @@ msgstr "Odstraňuji vybrané uživatele" msgid "Close" msgstr "Ukončit" -#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594 -#: libraries/common.lib.php:1144 libraries/common.lib.php:2960 -#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150 -#: libraries/import.lib.php:1174 libraries/Index.class.php:468 +#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468 +#: libraries/common.lib.php:594 libraries/common.lib.php:1144 +#: libraries/common.lib.php:2960 libraries/common.lib.php:2961 +#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 #: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137 msgid "Edit" msgstr "Upravit" @@ -1674,6 +1676,220 @@ msgstr "Minuty" msgid "Second" msgstr "Sekundy" +#: libraries/Config.class.php:1190 +msgid "Font size" +msgstr "Velikost písma" + +#: libraries/File.class.php:310 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" +"Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini." + +#: libraries/File.class.php:313 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" +"Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla " +"zadána v HTML formuláři." + +#: libraries/File.class.php:316 +msgid "The uploaded file was only partially uploaded." +msgstr "Soubor byl nahrán jen částečně." + +#: libraries/File.class.php:319 +msgid "Missing a temporary folder." +msgstr "Chybějící adresář pro dočasné soubory." + +#: libraries/File.class.php:322 +msgid "Failed to write file to disk." +msgstr "Chyba při zapisování souboru na disk." + +#: libraries/File.class.php:325 +msgid "File upload stopped by extension." +msgstr "Nahrávání souboru zastaveno rozšířením." + +#: libraries/File.class.php:328 +msgid "Unknown error in file upload." +msgstr "Neznámá chyba při nahrávání souboru." + +#: libraries/File.class.php:559 +msgid "" +"Error moving the uploaded file, see [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" +msgstr "" +"Chyba při přejmenování nahraného soubory, viz [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" + +#: libraries/Index.class.php:430 tbl_relation.php:526 +msgid "No index defined!" +msgstr "Není definován žádný index!" + +#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40 +#: tbl_tracking.php:309 +msgid "Indexes" +msgstr "Indexy" + +#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 +#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 +#: tbl_tracking.php:315 +msgid "Unique" +msgstr "Unikátní" + +#: libraries/Index.class.php:447 tbl_tracking.php:316 +msgid "Packed" +msgstr "Zabaleno" + +#: libraries/Index.class.php:449 tbl_tracking.php:318 +msgid "Cardinality" +msgstr "Mohutnost" + +#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777 +#: tbl_tracking.php:272 tbl_tracking.php:321 +msgid "Comment" +msgstr "Komentář" + +#: libraries/Index.class.php:474 +msgid "The primary key has been dropped" +msgstr "Primární klíč byl odstraněn" + +#: libraries/Index.class.php:478 +#, php-format +msgid "Index %s has been dropped" +msgstr "Index %s byl odstraněn" + +#: libraries/Index.class.php:582 +#, php-format +msgid "" +"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " +"removed." +msgstr "" +"Indexy %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být " +"odstraněn." + +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177 +#: libraries/server_links.inc.php:43 server_databases.php:100 +#: server_privileges.php:1740 +msgid "Databases" +msgstr "Databáze" + +#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308 +#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883 +#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60 +msgid "Error" +msgstr "Chyba" + +#: libraries/Message.class.php:260 +#, php-format +msgid "%1$d row affected." +msgid_plural "%1$d rows affected." +msgstr[0] "Ovlivněn %1$d řádek." +msgstr[1] "Ovlivněny %1$d řádky." +msgstr[2] "Ovlivněno %1$d řádek." + +#: libraries/Message.class.php:279 +#, php-format +msgid "%1$d row deleted." +msgid_plural "%1$d rows deleted." +msgstr[0] "Smazán %1$d řádek." +msgstr[1] "Smazány %1$d řádky." +msgstr[2] "Smazáno %1$d řádek." + +#: libraries/Message.class.php:298 +#, php-format +msgid "%1$d row inserted." +msgid_plural "%1$d rows inserted." +msgstr[0] "Vložen %1$d řádek." +msgstr[1] "Vloženy %1$d řádky." +msgstr[2] "Vloženo %1$d řádek." + +#: libraries/RecentTable.class.php:114 +msgid "Could not save recent table" +msgstr "Nepodařilo se uložit nedávnou tabulku" + +#: libraries/RecentTable.class.php:149 +msgid "Recent tables" +msgstr "Nedávné tabulky" + +#: libraries/RecentTable.class.php:155 +msgid "There are no recent tables" +msgstr "Nebyly nalezeny žádné nedávné tabulky" + +#: libraries/StorageEngine.class.php:195 +msgid "" +"There is no detailed status information available for this storage engine." +msgstr "Nejsou dostupné podrobnější informace o tomto úložišti." + +#: libraries/StorageEngine.class.php:355 +#, php-format +msgid "%s is available on this MySQL server." +msgstr "Úložiště %s je dostupné na tomto MySQL serveru." + +#: libraries/StorageEngine.class.php:358 +#, php-format +msgid "%s has been disabled for this MySQL server." +msgstr "Úložiště %s je vypnuté na tomto MySQL serveru." + +#: libraries/StorageEngine.class.php:362 +#, php-format +msgid "This MySQL server does not support the %s storage engine." +msgstr "Tento MySQL server nepodporuje úložiště %s." + +#: libraries/Table.class.php:1027 +msgid "Invalid database" +msgstr "Chybná databáze" + +#: libraries/Table.class.php:1041 tbl_get_field.php:25 +msgid "Invalid table name" +msgstr "Chybné jméno tabulky" + +#: libraries/Table.class.php:1056 +#, php-format +msgid "Error renaming table %1$s to %2$s" +msgstr "Chyba při přejmenování tabulky %1$s na %2$s" + +#: libraries/Table.class.php:1139 +#, php-format +msgid "Table %s has been renamed to %s" +msgstr "Tabulka %s byla přejmenována na %s" + +#: libraries/Table.class.php:1272 +msgid "Could not save table UI preferences" +msgstr "Nepodařilo se uložit nastavení prohlížení tabulky" + +#: libraries/Theme.class.php:160 +#, php-format +msgid "No valid image path for theme %s found!" +msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!" + +#: libraries/Theme.class.php:380 +msgid "No preview available." +msgstr "Náhled není k dispozici." + +#: libraries/Theme.class.php:383 +msgid "take it" +msgstr "zvolit" + +#: libraries/Theme_Manager.class.php:109 +#, php-format +msgid "Default theme %s not found!" +msgstr "Výchozí vzhled %s nebyl nalezen!" + +#: libraries/Theme_Manager.class.php:147 +#, php-format +msgid "Theme %s not found!" +msgstr "Vzhled %s nebyl nalezen!" + +#: libraries/Theme_Manager.class.php:215 +#, php-format +msgid "Theme path not found for theme %s!" +msgstr "Nebyla nalezena platná cesta k vzhledu %s!" + +#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 +msgid "Theme" +msgstr "Vzhled" + #: libraries/auth/config.auth.lib.php:76 msgid "Cannot connect: invalid settings." msgstr "Nepodařilo se připojit: chybné nastavení." @@ -1687,8 +1903,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -1795,14 +2011,6 @@ msgstr "Chyba PDMS" msgid "PBMS connection failed:" msgstr "Připojení k PBMS selhalo:" -#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314 -#: libraries/common.lib.php:561 libraries/core.lib.php:232 -#: libraries/import.lib.php:136 libraries/Message.class.php:205 -#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287 -#: view_operations.php:60 -msgid "Error" -msgstr "Chyba" - #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" msgstr "Načtení informací o BLOBu z PBMS selhalo:" @@ -1855,11 +2063,6 @@ msgstr "Tabulky" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435 -#: tbl_tracking.php:309 -msgid "Indexes" -msgstr "Indexy" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:818 msgid "Overhead" @@ -2140,30 +2343,98 @@ msgstr "Nebyl zvolen žádný soubor pro nahrání" msgid "Execute" msgstr "Spustit" -#: libraries/Config.class.php:1190 -msgid "Font size" -msgstr "Velikost písma" +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 +msgid "Both" +msgstr "Obojí" -#: libraries/config/FormDisplay.class.php:83 -#: libraries/config/validate.lib.php:422 -msgid "Not a positive number" -msgstr "Nebylo zadáno kladné číslo" +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "Nikde" -#: libraries/config/FormDisplay.class.php:84 -#: libraries/config/validate.lib.php:435 -msgid "Not a non-negative number" -msgstr "Nebylo zadáno nezáporné číslo" +#: libraries/config.values.php:47 +msgid "Left" +msgstr "Nalevo" -#: libraries/config/FormDisplay.class.php:85 -#: libraries/config/validate.lib.php:409 -msgid "Not a valid port number" -msgstr "Neplatné číslo portu" +#: libraries/config.values.php:47 +msgid "Right" +msgstr "Napravo" -#: libraries/config/FormDisplay.class.php:86 -#: libraries/config/FormDisplay.class.php:574 -#: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450 -msgid "Incorrect value" -msgstr "Nesprávná hodnota" +#: libraries/config.values.php:75 +msgid "Open" +msgstr "Otevřené" + +#: libraries/config.values.php:75 +msgid "Closed" +msgstr "Uzavřené" + +#: libraries/config.values.php:96 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:122 libraries/export/texytext.php:24 +#: libraries/import.lib.php:1172 +msgid "structure" +msgstr "struktura" + +#: libraries/config.values.php:97 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:123 libraries/export/texytext.php:24 +msgid "data" +msgstr "data" + +#: libraries/config.values.php:98 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:124 libraries/export/texytext.php:24 +msgid "structure and data" +msgstr "struktura a data" + +#: libraries/config.values.php:100 +msgid "Quick - display only the minimal options to configure" +msgstr "Rychlý - zobrazí jen minimum možností nastavení" + +#: libraries/config.values.php:101 +msgid "Custom - display all possible options to configure" +msgstr "Vlastní - zobrazí všechna možná nastavení" + +#: libraries/config.values.php:102 +msgid "Custom - like above, but without the quick/custom choice" +msgstr "Vlastní - jako výše, ale bez volby rychlý/vlastní" + +#: libraries/config.values.php:120 +msgid "complete inserts" +msgstr "úplné inserty" + +#: libraries/config.values.php:121 +msgid "extended inserts" +msgstr "rozšířené inserty" + +#: libraries/config.values.php:122 +msgid "both of the above" +msgstr "oba výše uvedené" + +#: libraries/config.values.php:123 +msgid "neither of the above" +msgstr "ani jeden z výše uvedených" + +#: libraries/config/FormDisplay.class.php:83 +#: libraries/config/validate.lib.php:422 +msgid "Not a positive number" +msgstr "Nebylo zadáno kladné číslo" + +#: libraries/config/FormDisplay.class.php:84 +#: libraries/config/validate.lib.php:435 +msgid "Not a non-negative number" +msgstr "Nebylo zadáno nezáporné číslo" + +#: libraries/config/FormDisplay.class.php:85 +#: libraries/config/validate.lib.php:409 +msgid "Not a valid port number" +msgstr "Neplatné číslo portu" + +#: libraries/config/FormDisplay.class.php:86 +#: libraries/config/FormDisplay.class.php:574 +#: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450 +msgid "Incorrect value" +msgstr "Nesprávná hodnota" #: libraries/config/FormDisplay.class.php:87 #: libraries/config/validate.lib.php:464 @@ -2798,12 +3069,6 @@ msgstr "Nastaví adresáře pro import a export a volby komprese" msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430 -#: libraries/server_links.inc.php:43 server_databases.php:100 -#: server_privileges.php:1740 -msgid "Databases" -msgstr "Databáze" - #: libraries/config/messages.inc.php:178 msgid "Databases display options" msgstr "Nastavení zobrazení databází" @@ -4415,78 +4680,6 @@ msgstr "Prázdné heslo kontrolního uživatele phpMyAdmina při použití pmadb msgid "Incorrect IP address: %s" msgstr "Nesprávná IP adresa: %s" -#: libraries/config.values.php:45 libraries/config.values.php:47 -#: libraries/config.values.php:51 -msgid "Both" -msgstr "Obojí" - -#: libraries/config.values.php:47 -msgid "Nowhere" -msgstr "Nikde" - -#: libraries/config.values.php:47 -msgid "Left" -msgstr "Nalevo" - -#: libraries/config.values.php:47 -msgid "Right" -msgstr "Napravo" - -#: libraries/config.values.php:75 -msgid "Open" -msgstr "Otevřené" - -#: libraries/config.values.php:75 -msgid "Closed" -msgstr "Uzavřené" - -#: libraries/config.values.php:96 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:122 libraries/export/texytext.php:24 -#: libraries/import.lib.php:1172 -msgid "structure" -msgstr "struktura" - -#: libraries/config.values.php:97 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:123 libraries/export/texytext.php:24 -msgid "data" -msgstr "data" - -#: libraries/config.values.php:98 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:124 libraries/export/texytext.php:24 -msgid "structure and data" -msgstr "struktura a data" - -#: libraries/config.values.php:100 -msgid "Quick - display only the minimal options to configure" -msgstr "Rychlý - zobrazí jen minimum možností nastavení" - -#: libraries/config.values.php:101 -msgid "Custom - display all possible options to configure" -msgstr "Vlastní - zobrazí všechna možná nastavení" - -#: libraries/config.values.php:102 -msgid "Custom - like above, but without the quick/custom choice" -msgstr "Vlastní - jako výše, ale bez volby rychlý/vlastní" - -#: libraries/config.values.php:120 -msgid "complete inserts" -msgstr "úplné inserty" - -#: libraries/config.values.php:121 -msgid "extended inserts" -msgstr "rozšířené inserty" - -#: libraries/config.values.php:122 -msgid "both of the above" -msgstr "oba výše uvedené" - -#: libraries/config.values.php:123 -msgid "neither of the above" -msgstr "ani jeden z výše uvedených" - #. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. #: libraries/core.lib.php:264 msgctxt "PHP documentation language" @@ -4547,28 +4740,9 @@ msgid "Turn it off" msgstr "Vypnout" #: libraries/db_events.inc.php:141 -#, fuzzy #| msgid "Add a new Event" msgid "Add an event" -msgstr "Přidat novou událost" - -#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 -msgid "Connection for controluser as defined in your configuration failed." -msgstr "" -"Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních." - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 -#: libraries/dbi/mysqli.dbi.lib.php:395 -msgid "The server is not responding" -msgstr "Server neodpovídá" - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(nebo není správně nastaven lokální socket MySQL serveru)" - -#: libraries/dbi/mysql.dbi.lib.php:346 -msgid "Details..." -msgstr "Podrobnosti..." +msgstr "Přidat událost" #: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 #: libraries/db_links.inc.php:44 @@ -4637,9 +4811,9 @@ msgstr "Délka/Množina" #: libraries/export/php_array.php:29 libraries/export/sql.php:83 #: libraries/export/texytext.php:31 libraries/export/xls.php:29 #: libraries/export/xlsx.php:29 libraries/export/xml.php:25 -#: libraries/export/yaml.php:30 libraries/import/csv.php:33 +#: libraries/export/yaml.php:30 libraries/import.lib.php:1145 +#: libraries/import.lib.php:1167 libraries/import/csv.php:33 #: libraries/import/docsql.php:35 libraries/import/ldi.php:49 -#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/ods.php:32 libraries/import/sql.php:20 #: libraries/import/xls.php:28 libraries/import/xlsx.php:28 #: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889 @@ -4686,11 +4860,6 @@ msgstr "Typ zabezpečení" msgid "SQL data access" msgstr "Přístup k SQL datům" -#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452 -#: tbl_tracking.php:272 tbl_tracking.php:321 -msgid "Comment" -msgstr "Komentář" - #: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842 msgid "Routine parameters" msgstr "Parametry rutiny" @@ -4713,37 +4882,37 @@ msgstr "Musíte zadat jméno rutiny" #: libraries/db_routines.lib.php:984 #, php-format msgid "Invalid direction \"%s\" given for parameter." -msgstr "„%s“ je chybný směr parametru." +msgstr "„%s“ je chybný směr parametru." #: libraries/db_routines.lib.php:995 libraries/db_routines.lib.php:1036 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" +"Musíte zadat parametr „Délka/Hodnoty“ pro parametry typu ENUM, SET, VARCHAR " +"nebo VARBINARY." #: libraries/db_routines.lib.php:1020 msgid "You must provide a name and a type for each routine parameter." -msgstr "" +msgstr "Pro každý parametr musíte zadat jeho jméno a typ." #: libraries/db_routines.lib.php:1077 msgid "You must provide a routine definition." -msgstr "" +msgstr "Musíte zadat definici rutiny." #: libraries/db_routines.lib.php:1209 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no routines to display." -msgstr "Nebyl zvolen žádný soubor pro nahrání" +msgstr "Nebyly nalezeny žádné rutiny." #: libraries/db_routines.lib.php:1253 msgid "Add routine" msgstr "Přidat rutinu" #: libraries/db_routines.lib.php:1256 -#, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a new routine" -msgstr "Nemáte dostatečná práva na provedení této akce!" +msgstr "Nemáte dostatečná práva pro vytvoření rutiny" #: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2121 msgid "" @@ -4753,6 +4922,24 @@ msgstr "" "Počet nemusí být přesný, viz [a@./Documentation.html#faq3_11@Documentation]" "FAQ 3.11[/a]" +#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 +msgid "Connection for controluser as defined in your configuration failed." +msgstr "" +"Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních." + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 +#: libraries/dbi/mysqli.dbi.lib.php:395 +msgid "The server is not responding" +msgstr "Server neodpovídá" + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(nebo není správně nastaven lokální socket MySQL serveru)" + +#: libraries/dbi/mysql.dbi.lib.php:346 +msgid "Details..." +msgstr "Podrobnosti..." + #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 msgid "Change password" @@ -4892,8 +5079,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "libovolné řetězce pro formátování data a času. Dále budou provedena " @@ -5129,11 +5316,11 @@ msgstr "Geometrie" #: libraries/display_tbl.lib.php:643 msgid "Well Known Text" -msgstr "" +msgstr "Text (WKT)" #: libraries/display_tbl.lib.php:644 msgid "Well Known Binary" -msgstr "" +msgstr "Binární (WKB)" #: libraries/display_tbl.lib.php:1288 msgid "Copy" @@ -5190,27 +5377,26 @@ msgid "Link not found" msgstr "Odkaz nenalezen" #: libraries/display_triggers.inc.php:35 -#, fuzzy, php-format +#, php-format #| msgid "Export contents" msgid "Export of trigger %s" -msgstr "Exportovat obsah" +msgstr "Exportovat spoušť %s" #: libraries/display_triggers.inc.php:39 #, php-format msgid "Export of trigger \"%s\"" -msgstr "" +msgstr "Export spouště „%s“" #: libraries/display_triggers.inc.php:47 -#, fuzzy, php-format +#, php-format #| msgid "No valid image path for theme %s found!" msgid "No trigger with name %s found" -msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!" +msgstr "Spoušť se jménem %s nebyla nalezena" #: libraries/display_triggers.inc.php:64 libraries/display_triggers.inc.php:66 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no triggers to display." -msgstr "Nebyl zvolen žádný soubor pro nahrání" +msgstr "Nebyly nalezeny žádné spouště." #: libraries/display_triggers.inc.php:77 server_status.php:800 sql.php:936 msgid "Time" @@ -5221,10 +5407,9 @@ msgid "Event" msgstr "Událost" #: libraries/display_triggers.inc.php:120 -#, fuzzy #| msgid "Add a new server" msgid "Add a trigger" -msgstr "Přidat nový server" +msgstr "Přidat spoušť" #: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" @@ -5665,8 +5850,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -5969,57 +6154,15 @@ msgstr "Pohledy" msgid "Export contents" msgstr "Exportovat obsah" -#: libraries/File.class.php:310 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" -"Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini." - -#: libraries/File.class.php:313 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" -"Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla " -"zadána v HTML formuláři." - -#: libraries/File.class.php:316 -msgid "The uploaded file was only partially uploaded." -msgstr "Soubor byl nahrán jen částečně." - -#: libraries/File.class.php:319 -msgid "Missing a temporary folder." -msgstr "Chybějící adresář pro dočasné soubory." - -#: libraries/File.class.php:322 -msgid "Failed to write file to disk." -msgstr "Chyba při zapisování souboru na disk." - -#: libraries/File.class.php:325 -msgid "File upload stopped by extension." -msgstr "Nahrávání souboru zastaveno rozšířením." - -#: libraries/File.class.php:328 -msgid "Unknown error in file upload." -msgstr "Neznámá chyba při nahrávání souboru." - -#: libraries/File.class.php:559 -msgid "" -"Error moving the uploaded file, see [a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "" -"Chyba při přejmenování nahraného soubory, viz [a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a]" - #: libraries/footer.inc.php:188 libraries/footer.inc.php:191 #: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Otevřít nové okno phpMyAdmina" #: libraries/gis_visualization.lib.php:129 -#, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." -msgstr "Nebyla nalezena žádná data pro graf." +msgstr "Nebyla nalezena žádná data zobrazení GIS." #: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54 msgid "SQL result" @@ -6029,6 +6172,40 @@ msgstr "Výsledek SQL dotazu" msgid "Generated by" msgstr "Vygeneroval" +#: libraries/import.lib.php:1141 +msgid "" +"The following structures have either been created or altered. Here you can:" +msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Zobrazit obsah tabulky kliknutím na její jméno" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Upravit strukturu kliknutím na odkaz „Struktura“" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Přejít na databázi" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "nastavení" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Přejít na tabulku" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Přejít na podhled" + #: libraries/import/csv.php:38 libraries/import/ods.php:26 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 msgid "" @@ -6095,40 +6272,6 @@ msgstr "Názvy polí" msgid "This plugin does not support compressed imports!" msgstr "Tento plugin nepodporuje komprimované soubory!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Zobrazit obsah tabulky kliknutím na její jméno" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Upravit strukturu kliknutím na odkaz „Struktura“" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Přejít na databázi" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "nastavení" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Přejít na tabulku" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Přejít na podhled" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6138,57 +6281,21 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importovat měny (např. 5.00 místo $5.00)" -#: libraries/import/sql.php:33 -msgid "SQL compatibility mode:" -msgstr "Režim kompatibility SQL:" - -#: libraries/import/sql.php:43 -msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty" - -#: libraries/import/xml.php:74 libraries/import/xml.php:130 -msgid "" -"The XML file specified was either malformed or incomplete. Please correct " -"the issue and try again." -msgstr "" -"Zadaný XML soubor je buď poškozený nebo nekompletní. Prosím opravte ho a " -"zkuste to znovu." - -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Není definován žádný index!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unikátní" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Zabaleno" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Mohutnost" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primární klíč byl odstraněn" +#: libraries/import/sql.php:33 +msgid "SQL compatibility mode:" +msgstr "Režim kompatibility SQL:" -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Index %s byl odstraněn" +#: libraries/import/sql.php:43 +msgid "Do not use AUTO_INCREMENT for zero values" +msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty" -#: libraries/Index.class.php:582 -#, php-format +#: libraries/import/xml.php:74 libraries/import/xml.php:130 msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." +"The XML file specified was either malformed or incomplete. Please correct " +"the issue and try again." msgstr "" -"Indexy %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být " -"odstraněn." +"Zadaný XML soubor je buď poškozený nebo nekompletní. Prosím opravte ho a " +"zkuste to znovu." #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" @@ -6200,30 +6307,6 @@ msgstr "Žádná" msgid "Convert to Kana" msgstr "Převést na Kanu" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Ovlivněn %1$d řádek." -msgstr[1] "Ovlivněny %1$d řádky." -msgstr[2] "Ovlivněno %1$d řádek." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Smazán %1$d řádek." -msgstr[1] "Smazány %1$d řádky." -msgstr[2] "Smazáno %1$d řádek." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Vložen %1$d řádek." -msgstr[1] "Vloženy %1$d řádky." -msgstr[2] "Vloženo %1$d řádek." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "Z" @@ -6462,18 +6545,6 @@ msgstr "Znovu nahrát navigační rám" msgid "This format has no options" msgstr "Tento formát nemá žádná nastavení" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Nepodařilo se uložit nedávnou tabulku" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Nedávné tabulky" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Nebyly nalezeny žádné nedávné tabulky" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "není v pořádku" @@ -6858,6 +6929,61 @@ msgstr "Rozdíly" msgid "Target database" msgstr "Cílová databáze" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Spustit SQL dotaz(y) na serveru %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Spustit SQL dotaz(y) na databázi %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Vyčistit" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Pole" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Přidat tento SQL dotaz do oblíbených" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Přepsat existující oblíbený dotaz stejného jména" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Nepřepisovat tento dotaz z hlavního okna" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Oddělovač" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Zobrazit zde tento dotaz znovu " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Zobrazit" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "textový soubor" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "soubor z adresáře pro upload" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6920,61 +7046,6 @@ msgstr "Chybný identifikátor" msgid "Unknown Punctuation String" msgstr "Neznámé interpunkční znaménko" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Spustit SQL dotaz(y) na serveru %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Spustit SQL dotaz(y) na databázi %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Vyčistit" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Pole" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Přidat tento SQL dotaz do oblíbených" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Přepsat existující oblíbený dotaz stejného jména" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Nepřepisovat tento dotaz z hlavního okna" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Oddělovač" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Zobrazit zde tento dotaz znovu " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Zobrazit" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "textový soubor" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "soubor z adresáře pro upload" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -6984,48 +7055,6 @@ msgstr "" "Kontrolování SQL nemohlo být spušteno. Prosím ověřte, jestli máte požadovaná " "rozšíření PHP, jak je popsáno v %sdokumentaci%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Nejsou dostupné podrobnější informace o tomto úložišti." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "Úložiště %s je dostupné na tomto MySQL serveru." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "Úložiště %s je vypnuté na tomto MySQL serveru." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Tento MySQL server nepodporuje úložiště %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Chybná databáze" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Chybné jméno tabulky" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Chyba při přejmenování tabulky %1$s na %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabulka %s byla přejmenována na %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Nepodařilo se uložit nastavení prohlížení tabulky" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Tabulka se zdá být prázdná!" @@ -7067,8 +7096,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" -"spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " +"%spopisy transformací%s" #: libraries/tbl_properties.inc.php:144 msgid "Transformation options" @@ -7119,8 +7148,8 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" -"s dělá." +"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co " +"%s dělá." #: libraries/tbl_properties.inc.php:606 tbl_structure.php:678 #, php-format @@ -7141,42 +7170,9 @@ msgid "PARTITION definition" msgstr "Definice PARTITION" #: libraries/tbl_properties.inc.php:776 -#, fuzzy #| msgid "+ Add a new value" msgid "+ Add a value" -msgstr "+ Přidat novou hodnotu" - -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Náhled není k dispozici." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "zvolit" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Výchozí vzhled %s nebyl nalezen!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Vzhled %s nebyl nalezen!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Nebyla nalezena platná cesta k vzhledu %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "Vzhled" +msgstr "+ Přidat hodnotu" #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" @@ -7768,8 +7764,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" -"sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " +"%sNastavovacího skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -8212,8 +8208,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " @@ -8590,10 +8586,9 @@ msgid "All status variables" msgstr "Všechny stavové proměnné" #: server_status.php:413 server_status.php:439 -#, fuzzy #| msgid "Refresh rate" msgid "Refresh rate:" -msgstr "Obnovovací frekvence" +msgstr "Obnovovací frekvence:" #: server_status.php:462 msgid "Containing the word:" @@ -9467,7 +9462,7 @@ msgstr "" #: server_variables.php:58 msgid "Setting variable failed" -msgstr "" +msgstr "Nastavení proměnné selhalo" #: server_variables.php:77 msgid "Server variables and settings" @@ -9733,8 +9728,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%" -"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " +"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie" +"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " "hodnotu než je tato." #: setup/lib/index.lib.php:266 @@ -9745,8 +9740,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %" -"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " +"Pokud to považujete za nutné, použijte další možnosti zabezpečení - " +"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " "založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa " "dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli." @@ -9971,10 +9966,9 @@ msgid "View dump (schema) of table" msgstr "Export tabulky" #: tbl_gis_visualization.php:111 -#, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" -msgstr "Zobrazit výběr serverů" +msgstr "Zobrazit GIS data" #: tbl_gis_visualization.php:157 msgid "Width" @@ -9985,42 +9979,37 @@ msgid "Height" msgstr "Výška" #: tbl_gis_visualization.php:165 -#, fuzzy #| msgid "Textarea columns" msgid "Label column" -msgstr "Sloupců v textové oblasti" +msgstr "Název sloupce" #: tbl_gis_visualization.php:167 -#, fuzzy #| msgid "- none -" msgid "-- None --" -msgstr "- žádný -" +msgstr "-- Žádný --" #: tbl_gis_visualization.php:180 -#, fuzzy #| msgid "Total count" msgid "Spatial column" -msgstr "Celkový počet" +msgstr "Prostorový sloupec" #: tbl_gis_visualization.php:201 msgid "Use OpenStreetMaps as Base Layer" -msgstr "" +msgstr "Použít OpenStreetMap jako základní vrstvu" #: tbl_gis_visualization.php:204 msgid "Redraw" msgstr "Znovu vykreslit" #: tbl_gis_visualization.php:206 -#, fuzzy #| msgid "Save as file" msgid "Save to file" -msgstr "Uložit jako soubor" +msgstr "Uložit do souboru" #: tbl_gis_visualization.php:207 -#, fuzzy #| msgid "Table name" msgid "File name" -msgstr "Jméno tabulky" +msgstr "Jméno souboru" #: tbl_indexes.php:66 msgid "The name of the primary key must be \"PRIMARY\"!" @@ -10262,7 +10251,7 @@ msgstr "Seřadit podle:" #: tbl_structure.php:158 tbl_structure.php:163 tbl_structure.php:611 msgid "Spatial" -msgstr "" +msgstr "Prostorový" #: tbl_structure.php:165 tbl_structure.php:169 msgid "Browse distinct values" @@ -10281,10 +10270,9 @@ msgid "Add unique index" msgstr "Přidat unikátní index" #: tbl_structure.php:176 tbl_structure.php:177 -#, fuzzy #| msgid "Add index" msgid "Add SPATIAL index" -msgstr "Přidat index" +msgstr "Přidat prostorový index" #: tbl_structure.php:178 tbl_structure.php:179 msgid "Add FULLTEXT index" diff --git a/po/cy.po b/po/cy.po index c5a08a5f6a80..d1d1af317dd0 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" +"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.0.5\n" @@ -48,13 +48,13 @@ msgstr "" msgid "Search" msgstr "Chwilio" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -67,18 +67,18 @@ msgstr "Chwilio" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Ewch" @@ -125,7 +125,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Sylw cronfa ddata:" @@ -135,9 +135,9 @@ msgstr "Sylw cronfa ddata:" msgid "Table comments" msgstr "Sylwadau tabl" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -146,12 +146,12 @@ msgstr "Sylwadau tabl" msgid "Column" msgstr "Colofn" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -161,9 +161,9 @@ msgstr "Colofn" msgid "Type" msgstr "Math" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -201,13 +201,12 @@ msgstr "Cysylltu i" msgid "Comments" msgstr "Sylwadau" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -218,17 +217,17 @@ msgstr "Sylwadau" msgid "No" msgstr "Na" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -265,79 +264,79 @@ msgstr "Dad-ddewis Pob" msgid "The database name is empty!" msgstr "Mae enw'r gronfa ddata'n wag!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Cafodd cronfa ddata %s ei hailenwi i %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Gorchymyn" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Tynnwch y gronfa ddata" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Cafodd cronfa ddata %s ei gollwng." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Dilëwch y gronfa ddata (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copïwch y gronfa ddata i" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Strwythur yn unig" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Strwythur a data" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Data yn unig" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Defnyddiwch CREATE DATABASE cyn copïo" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Ychwanegwch cyfyngiadau" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -346,7 +345,7 @@ msgstr "Newidiwch i'r gronfa ddata a gopïwyd" msgid "Collation" msgstr "Coladiad" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -355,7 +354,7 @@ msgstr "" "Cafodd storfa ffurfwedd phpMyAdmin ei dadweithredu. Pwyswch %syma%s i " "ddarganfod pam." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Golygu neu allforio sgema perthynol" @@ -501,108 +500,108 @@ msgstr "Ymholiad SQL ar gronfa ddata %s:" msgid "Submit Query" msgstr "Cyflwyno Ymholiad" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Dywedodd MySQL:" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesau" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export as %s" msgid "Export of routine %s" msgstr "Allforio fel %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Indecs gweinydd annilys: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "View %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Cafodd golwg %s ei ollwng" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Crëwch berthynas" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit server" msgid "Edit routine" msgstr "Golygu gweinydd" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import/csv.php:42 -#, fuzzy -#| msgid "Columns" -msgid "Column names: " -msgstr "Colofnau" +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +#, fuzzy +#| msgid "Columns" +msgid "Column names: " +msgstr "Colofnau" #: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 @@ -6114,40 +6294,6 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6172,42 +6318,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Dim indecs wedi'i ddiffinio!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unigryw" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Paciwyd" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Cafodd yr allwedd gynradd ei gollwng" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Cafodd indecs %s ei ollwng" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un " -"ohonyn nhw." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6218,27 +6328,6 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d rhes wedi'i heffeithio." -msgstr[1] "%1$d rhes wedi'u heffeithio." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d rhes wedi'i dileu." -msgstr[1] "%1$d rhes wedi'u dileu." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d rhes wedi'i hychwanegu." -msgstr[1] "%1$d rhes wedi'u hychwanegu." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6479,22 +6568,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Cyfrifwch y tablau" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "" @@ -6876,57 +6949,6 @@ msgstr "Gwahaniaeth" msgid "Target database" msgstr "Cronfa ddata targed" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6982,54 +7004,62 @@ msgstr "Lleoliad y ffeil destun" msgid "web server upload directory" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -"Does dim gwybodaeth statws fanwl ar gael ar gyfer y peiriant storio hwn." -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "Mae %s ar gael ar y gweinydd MySQL hwn." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Crofna ddata annilys" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Enw tabl annilys" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Gwall wrth ailenwi tabl %1$s i %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Cafodd y tabl %s ei ailenwi i %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -7138,38 +7168,6 @@ msgstr "Diffiniad PARTITION" msgid "+ Add a value" msgstr "Ychwanegwch weinydd newydd" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s." - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Dim rhagolwg ar gael" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "cymerwch e" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Thema diofyn %s heb ei darganfod!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Heb ddarganfod thema ddiofyn %s!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8161,8 +8159,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/da.po b/po/da.po index d58c54726296..6a50e1c92026 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Søg" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Søg" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Udfør" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Database %1$s er oprettet," -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Databasekommentar: " @@ -131,9 +131,9 @@ msgstr "Databasekommentar: " msgid "Table comments" msgstr "Tabel kommentarer" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "Tabel kommentarer" msgid "Column" msgstr "Kolonnenavn" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "Kolonnenavn" msgid "Type" msgstr "Datatype" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "Kommentarer" msgid "No" msgstr "Nej" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -261,79 +260,79 @@ msgstr "Fravælg alle" msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s er blevet omdøbt til %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s er blevet kopieret til %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Kommando" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Fjern database" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Database %s er slettet." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopiér database til" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Kun strukturen" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Kun data" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Tilføj begrænsninger" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Skift til den kopierede database" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -342,7 +341,7 @@ msgstr "Skift til den kopierede database" msgid "Collation" msgstr "Kollation (Collation)" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -350,7 +349,7 @@ msgid "" msgstr "" "phpMyAdmin er ikke sat op til at gemme tabel-relationer. Se her %shvorfor%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Editer eller eksporter relations skema" @@ -496,109 +495,109 @@ msgstr "SQL-forespørgsel til database %s:" msgid "Submit Query" msgstr "Send forespørgsel" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-forespørgsel blev udført korrekt" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Tillader udførelse af gemte rutiner." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL returnerede: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Felj i udførsel af forespørgsel" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Ingen tabeller fundet i databasen" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Standardindstillinger for eksport" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Server indekset %s er ugyldigt" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabel %s er slettet" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "Database %1$s er oprettet," -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Opret relation" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redigeringstilstand" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import/csv.php:42 -#, fuzzy -#| msgid "Column names" -msgid "Column names: " +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +#, fuzzy +#| msgid "Column names" +msgid "Column names: " msgstr "Kolonnenavne" #: libraries/import/csv.php:62 libraries/import/csv.php:75 @@ -6115,40 +6292,6 @@ msgstr "Kolonnenavne" msgid "This plugin does not support compressed imports!" msgstr "Denne plugin understøtter ikke komprimeret import!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6173,42 +6316,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Intet indeks defineret!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unik" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Pakket" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinalitet" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primærnøglen er slettet" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeks %s er blevet slettet" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan " -"sikkert fjernes" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6221,27 +6328,6 @@ msgstr "Ingen" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d række påvirket" -msgstr[1] "%1$d rækker påvirket" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d række slettet" -msgstr[1] "%1$d rækker slettet" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d række sat ind" -msgstr[1] "%1$d rækker sat ind" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6484,18 +6570,6 @@ msgstr "" msgid "This format has no options" msgstr "Dette format har ingen indstillinger" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Kunne ikke gemme seneste tabel" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Seneste tabeller" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Der er ingen nye tabeller" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "ikke OK" @@ -6885,6 +6959,63 @@ msgstr "" msgid "Target database" msgstr "" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Kør SQL-forespørgsel/forespørgsler på server %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Kør SQL-forspørgsel(er) på database %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "" + +#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Column names" +msgid "Columns" +msgstr "Kolonnenavne" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Lav bogmærke til denne SQL-forespørgsel" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Lad alle brugere bruge dette bogmærke" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Erstat eksisterende bogmærke af samme navn" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Overskriv ikke denne forespørgsel fra udenfor vinduet" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Adskiller" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Vis forespørgslen her igen " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Kun oversigt" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Tekstfilens placering" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "webserver upload-mappe" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6949,63 +7080,6 @@ msgstr "Ugyldig identifikator" msgid "Unknown Punctuation String" msgstr "Ukendt tegnsætnings-streng" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Kør SQL-forespørgsel/forespørgsler på server %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Kør SQL-forspørgsel(er) på database %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "" - -#: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" -msgid "Columns" -msgstr "Kolonnenavne" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Lav bogmærke til denne SQL-forespørgsel" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Lad alle brugere bruge dette bogmærke" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Erstat eksisterende bogmærke af samme navn" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Overskriv ikke denne forespørgsel fra udenfor vinduet" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Adskiller" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Vis forespørgslen her igen " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Kun oversigt" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Tekstfilens placering" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "webserver upload-mappe" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7015,50 +7089,6 @@ msgstr "" "SQL-validatoren kunne ikke initialiseres. Check venligst at du har de " "nødvendige PHP-udvidelser installeret som beskrevet i %sdokumentationen%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Der er ingen detaljerede statusinformationer tilgængelige for dette " -"datalager." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s er tilgængelig på denne MySQL-server." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s er slået fra på denne MySQL-server." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Denne MySQL-server understøtter ikke %s datalager." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Ugyldig database" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Ugyldigt tabelnavn" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Fejl ved omdøbning af tabel %1$s til %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabellen %s er nu omdøbt til %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Kunne ikke gemme brugerindstillinger for tabel" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Tabel ser ud til at være tom" @@ -7190,38 +7220,6 @@ msgstr "" msgid "+ Add a value" msgstr "Tilføj en ny bruger" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Ingen gyldig billedsti for tema %s fundet!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Intet billede til rådighed." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "Vælg dette" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Standardtema %s ikke fundet!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s ikke fundet!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Sti til tema ikke fundet for tema %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8341,14 +8339,14 @@ msgstr "Drop databaser der har samme navne som brugernes." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " "privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " "privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " -"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" -"s før du fortsætter." +"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" +"%s før du fortsætter." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/de.po b/po/de.po index 892873872eab..c6e5454c4e57 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" "Last-Translator: Dominik Geyer \n" "Language-Team: german \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Suche" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Suche" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Die Datenbank %1$s wurde erzeugt." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Datenbankkommentar: " @@ -132,9 +132,9 @@ msgstr "Datenbankkommentar: " msgid "Table comments" msgstr "Tabellen-Kommentar" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Tabellen-Kommentar" msgid "Column" msgstr "Spalte" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Spalte" msgid "Type" msgstr "Typ" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Verweise" msgid "Comments" msgstr "Kommentare" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Kommentare" msgid "No" msgstr "Nein" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Auswahl entfernen" msgid "The database name is empty!" msgstr "Der Datenbankname ist leer!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Datenbank %s wurde umbenannt zu %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Datenbank %s wurde nach %s kopiert" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Befehl" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Datenbank entfernen" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Datenbank %s wurde gelöscht." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Datenbank löschen (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Datenbank kopieren nach" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Nur Struktur" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktur und Daten" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Nur Daten" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen." -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Füge %s hinzu" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Constraints hinzufügen" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Zu kopierter Datenbank wechseln" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,16 +342,16 @@ msgstr "Zu kopierter Datenbank wechseln" msgid "Collation" msgstr "Kollation" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%" -"s um herauszufinden warum." +"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier" +"%s um herauszufinden warum." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Beziehungsschema bearbeiten oder exportieren" @@ -498,110 +497,110 @@ msgstr "SQL-Befehl in der Datenbank %s:" msgid "Submit Query" msgstr "SQL-Befehl ausführen" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt." -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Erlaubt das Ausführen von Routinen." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Zeilen)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Die folgenden Abfragen wurden ausgeführt:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL meldet: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Fehler beim Bearbeiten der Anfrage" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Diese Datenbank enthält keine Tabellen." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Voreinstellung für Export" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Ungültige Server-Nummer: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Spalte %s wurde gelöscht" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Die Tabelle %1$s wurde erzeugt." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Erzeuge Verknüpfung" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Bearbeitungsmodus" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -"Die erste Zeile der Datei enthält die Spaltennamen (wenn diese Option " -"nicht aktiv ist, wird die erste Zeile als Datenzeile interpretiert)" +"Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier " +"können Sie:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -"Wenn die Daten jeder Zeile der Datei nicht in der gleichen Reihenfolge wie " +"Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Zum Ändern der Struktur auf das entsprechenden \"Struktur\" klicken" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Gehe zur Datenbank" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "Einstellungen" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Gehe zur Tabelle" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Gehe zum View" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"Die erste Zeile der Datei enthält die Spaltennamen (wenn diese Option " +"nicht aktiv ist, wird die erste Zeile als Datenzeile interpretiert)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" +"Wenn die Daten jeder Zeile der Datei nicht in der gleichen Reihenfolge wie " "die Datenbank stehen, geben sie die entsprechenden Spaltennamen hier an. " "Spaltennamen müssen durch Kommata getrennt werden und dürfen nicht von " "Anführungsstrichen eingeschlossen sein." @@ -6251,43 +6436,6 @@ msgstr "Spaltennamen" msgid "This plugin does not support compressed imports!" msgstr "Dieses Plugin unterstützt keine Kompression!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" -"Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier " -"können Sie:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Zum Ändern der Struktur auf das entsprechenden \"Struktur\" klicken" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Gehe zur Datenbank" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "Einstellungen" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Gehe zur Tabelle" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Gehe zum View" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6314,42 +6462,6 @@ msgstr "" "Die angegebene XML-Datei war entweder fehlerhaft oder unvollständig. Bitte " "korrigieren und erneut versuchen." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Kein Index definiert!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unique" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Gepackt" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinalität" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Der Primärschlüssel wurde gelöscht." - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Index %s wurde entfernt." - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte " -"möglicherweise entfernt werden." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6360,27 +6472,6 @@ msgstr "keine" msgid "Convert to Kana" msgstr "Nach Kana konvertieren" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d Zeile betroffen." -msgstr[1] "%1$d Zeilen betroffen." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d Zeile gelöscht." -msgstr[1] "%1$d Zeilen gelöscht." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d Zeile eingefügt." -msgstr[1] "%1$d Zeilen eingefügt." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6623,24 +6714,6 @@ msgstr "Navigations-Frame aktualisieren" msgid "This format has no options" msgstr "Für dieses Format sind keine Optionen vorhanden" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not save configuration" -msgid "Could not save recent table" -msgstr "Fehler beim Speichern der Konfiguration" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Zähle Tabellen" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Es sind keine Server konfiguriert" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "fehlerhaft" @@ -7030,6 +7103,61 @@ msgstr "Unterschied" msgid "Target database" msgstr "Ziel-Datenbank" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "SQL-Befehl(e) auf Server %s ausführen" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "SQL-Befehl(e) in Datenbank %s ausführen" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Werte löschen" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Spalten" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "SQL-Abfrage speichern" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Überschreibe gleichnamiges Bookmark" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Abfrage vor Änderungen außerhalb des Fensters schützen" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Begrenzer" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr "Diese Abfrage hier wieder anzeigen" + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Nur zeigen" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Datei" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "Upload-Verzeichnis auf dem Webserver" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7095,61 +7223,6 @@ msgstr "Ungültiger Bezeichner" msgid "Unknown Punctuation String" msgstr "Unbekannte Interpunktion" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "SQL-Befehl(e) auf Server %s ausführen" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "SQL-Befehl(e) in Datenbank %s ausführen" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Werte löschen" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Spalten" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "SQL-Abfrage speichern" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Überschreibe gleichnamiges Bookmark" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Abfrage vor Änderungen außerhalb des Fensters schützen" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Begrenzer" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr "Diese Abfrage hier wieder anzeigen" - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Nur zeigen" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Datei" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "Upload-Verzeichnis auf dem Webserver" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7160,48 +7233,6 @@ msgstr "" "überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-" "Erweiterungen installiert haben." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Für dieses Tabellenformat sind keine Statusinformationen verfügbar" - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s ist auf diesem MySQL-Server verfügbar." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s wurde auf diesem MySQL-Server deaktiviert." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Dieser MySQL-Server unterstützt %s nicht." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "ungültige Datenbank" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "ungültiger Tabellenname" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabelle %s wurde umbenannt in %s." - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Die Tabelle scheint leer zu sein!" @@ -7296,8 +7327,8 @@ msgid "" "author what %s does." msgstr "" "Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere " -"Informationen wenden Sie sich bitte an den Autoren der Funktion "%" -"s"." +"Informationen wenden Sie sich bitte an den Autoren der Funktion "" +"%s"." #: libraries/tbl_properties.inc.php:606 tbl_structure.php:678 #, php-format @@ -7323,39 +7354,6 @@ msgstr "PARTITION Definition" msgid "+ Add a value" msgstr "+ Neuen Wert hinzufügen" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" -"Keinen gültiges Pfad für Grafiken des Oberflächendesigns \"%s\" gefunden!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Keine Vorschau verfügbar." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "auswählen" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Standard-Oberflächendesign \"%s\" nicht gefunden!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Oberflächendesign \"%s\" nicht gefunden!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Pfad für das Oberflächendesign \"%s\" nicht gefunden!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8419,8 +8417,8 @@ msgstr "Die gleichnamigen Datenbanken löschen." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-" "Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, " @@ -10034,8 +10032,8 @@ msgstr "" "Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen " "Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im " "Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder " -"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %" -"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." +"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den " +"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/el.po b/po/el.po index 2170bdc6cf10..910018c349df 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-23 10:24+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Αναζήτηση" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Αναζήτηση" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Εκτέλεση" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Σχόλιο βάσης: " @@ -132,9 +132,9 @@ msgstr "Σχόλιο βάσης: " msgid "Table comments" msgstr "Σχόλια Πίνακα" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Σχόλια Πίνακα" msgid "Column" msgstr "Στήλη" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Στήλη" msgid "Type" msgstr "Τύπος" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Σύνδεση με" msgid "Comments" msgstr "Σχόλια" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Σχόλια" msgid "No" msgstr "Όχι" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Αποεπιλογή όλων" msgid "The database name is empty!" msgstr "Το όνομα της βάσης δεδομένων είναι κενό!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Η βάση δεδομένων %s μετονομάστηκε σε %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Εντολή" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Μετακίνηση βάσης δεδομένων σε" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Η βάση δεδομένων %s διεγράφη." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Διαγραφή της βάση δεδομένων (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Αντιγραφή βάσης δεδομένων σε" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Μόνο η δομή" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Δομή και δεδομένα" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Μόνο τα δεδομένα" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "ΔΗΜΙΟΥΡΓΙΑ ΒΑΣΗΣ ΔΕΔΟΜΕΝΩΝ πριν την αντιγραφή" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν msgid "Collation" msgstr "Σύνθεση" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματος" @@ -498,14 +497,14 @@ msgstr "Εντολή SQL στη βάση δεδομένων %s:" msgid "Submit Query" msgstr "Υποβολή ερωτήματος" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -514,88 +513,88 @@ msgstr[0] "" msgstr[1] "" "%d εγγραφές επηρεάστηκαν από την τελευταία δήλωση μέσα στη διαδικασία" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Το ερώτημα «%s» απέτυχε" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μήνυμα: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "Σφάλμα στην προώθηση αιτημάτος" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No routine with name %s found in database %s" msgid "No routine with name %1$s found in database %2$s" msgstr "Καμιά ρουτίνα με την ονομασία %s δεν βρέθηκε στη βάση δεδομένων %s" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "Εκτέλεση ρουτίνας" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "Εξαγωγή της ρουτίνας %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Μη έγκυρος τύπος ρουτίνας: «%s»" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "Συγνώμη, αποτύχαμε να επαναφέρουμε τη διαγραμμένη ρουτίνα." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "Το εφεδρικό ερώτημα ήταν:" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "Η ρουτίνα %1$s έχει αλλαχτεί." -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "Η ρουτίνα %1$s έχει δημιουργηθεί." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" "Ένα ή περισσότερα σφάλματα έλαβαν χώρα κατά την προώθηση του αιτήματός " "σας:" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "Δημιουργία ρουτίνας" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "Επεξεργασία ρουτίνας" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" -"Η πρώτη γραμμή του αρχείου περιέχει τα ονόματα στηλών του πίνακα (αν δεν " -"επιλεγεί, η πρώτη γραμμή θα περιέχει δεδομένα)" +"The following structures have either been created or altered. Here you can:" +msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." -msgstr "" -"Αν τα δεδομένα σε κάθε εγγραφή του αρχείου δεν είναι στην ίδια σειρά όπως " -"στη βάση δεδομένων, δώστε εδώ τα ονόματα των στηλών. Τα ονόματα των στηλών " -"πρέπει να χωρίζονται με κόμμα και να μην περιβάλλονται σε εισαγωγικά." +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Δείτε τα περιεχόμενα δομής πατώντας στο όνομα" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Επεξεργαστεί τη δομή από τον σύνδεσμο «Δομή»" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Μετάβαση στη βάση δεδομένων" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "ρυθμίσεις" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Μετάβαση στον πίνακα" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Μετάβαση στην προβολή" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"Η πρώτη γραμμή του αρχείου περιέχει τα ονόματα στηλών του πίνακα (αν δεν " +"επιλεγεί, η πρώτη γραμμή θα περιέχει δεδομένα)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" +"Αν τα δεδομένα σε κάθε εγγραφή του αρχείου δεν είναι στην ίδια σειρά όπως " +"στη βάση δεδομένων, δώστε εδώ τα ονόματα των στηλών. Τα ονόματα των στηλών " +"πρέπει να χωρίζονται με κόμμα και να μην περιβάλλονται σε εισαγωγικά." #: libraries/import/csv.php:42 msgid "Column names: " @@ -6185,40 +6362,6 @@ msgstr "Ονόματα στηλών" msgid "This plugin does not support compressed imports!" msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπιεσμένες εισαγωγές!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Δείτε τα περιεχόμενα δομής πατώντας στο όνομα" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Επεξεργαστεί τη δομή από τον σύνδεσμο «Δομή»" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Μετάβαση στη βάση δεδομένων" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "ρυθμίσεις" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Μετάβαση στον πίνακα" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Μετάβαση στην προβολή" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (π.χ. 12.00% αντί .12)" @@ -6243,42 +6386,6 @@ msgstr "" "Το αρχείο XML που ορίστηκε ήταν σε λανθασμένη μορφή ή ανεπαρκές. Διορθώστε " "το θέμα και δοκιμάστε ξανά." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Δεν ορίστηκε ευρετήριο!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Μοναδικό" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Συμπιεσμένο" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Μοναδικότητα" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Το πρωτεύον κλειδί διεγράφη" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Το ευρετήριο %s διεγράφη" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " -"απομακρυνθεί." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6289,27 +6396,6 @@ msgstr "Καμία" msgid "Convert to Kana" msgstr "Μετατροπή σε Kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Επηρεάστηκε %1$d γραμμή." -msgstr[1] "Επηρεάστηκαν %1$d γραμμές." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Διαγράφτηκε %1$d γραμμή." -msgstr[1] "Διαγράφτηκαν %1$d γραμμές." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Εισήχθηκε %1$d γραμμή." -msgstr[1] "Εισήχθηκαν %1$d γραμμές." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "Από" @@ -6548,18 +6634,6 @@ msgstr "Επαναφόρτωση πλαισίου πλοήγησης" msgid "This format has no options" msgstr "Αυτή η μορφή δεν έχει επιλογές" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Αδύνατη η αποθήκευση πρόσφατου πίνακα" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Πρόσφατοι πίνακες" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Δεν υπάρχουν πρόσφατοι πίνακες" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "ΛΑΘΟΣ" @@ -6946,6 +7020,61 @@ msgstr "Διαφορά" msgid "Target database" msgstr "Βάση δεδομένων προορισμού" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο διακομιστή «%s»" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Καθάρισμα" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Στήλες" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Αποθήκευση αυτού του ερωτήματος SQL" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Να μην αλλάξει το ερώτημα από εξωτερική πηγή" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Διαχωριστικό" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Επανεμφάνιση αυτού του ερώτηματος εδώ" + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Μόνο ανάγνωση" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Τοποθεσία του αρχείου κειμένου" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7009,61 +7138,6 @@ msgstr "Άγνωστο Αναγνωριστικό" msgid "Unknown Punctuation String" msgstr "Άγνωστο σημείο στίξης" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο διακομιστή «%s»" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Καθάρισμα" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Στήλες" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Αποθήκευση αυτού του ερωτήματος SQL" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Να μην αλλάξει το ερώτημα από εξωτερική πηγή" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Διαχωριστικό" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Επανεμφάνιση αυτού του ερώτηματος εδώ" - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Μόνο ανάγνωση" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Τοποθεσία του αρχείου κειμένου" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7073,50 +7147,6 @@ msgstr "" "Ο επικυρωτής SQL δεν μπόρεσε να ξεκινήσει. Ελέγξτε ότι έχετε εγκαταστήσει " "της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην %sτεκμηρίωση%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Δεν υπάρχουν λεπτομερείς πληροφορίες κατάστασης για αυτή τη μηχανή " -"αποθήκευσης." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "Η %s είναι διαθέσιμη σε αυτό το διακομιστή MySQL." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το διακομιστή MySQL." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Μη έγκυρη βάση δεδομένων" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Μη έγκυρο όνομα πίνακα" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Ο Πίνακας %s μετονομάσθηκε σε %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Αδύνατη η αποθήκευση των ρυθμίσεων πίνακα για το περιβάλλον χρήστη" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Ο πίνακας φαίνεται να είναι άδειος!" @@ -7237,38 +7267,6 @@ msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)" msgid "+ Add a value" msgstr "+ Προσθήκη νέας τιμής" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Προεπισκόπηση μη διαθέσιμη." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "πάρτε το" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Το προεπιλεγμένο θέμα %s δεν βρέθηκε!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Το θέμα %s δεν βρέθηκε!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "Θέμα" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7587,8 +7585,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " -"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" -"sεδώ%s." +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " +"%sεδώ%s." #: main.php:314 msgid "" @@ -8331,8 +8329,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " "τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -9909,8 +9907,8 @@ msgid "" "(currently %d)." msgstr "" "Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " -"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%" -"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" +"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:262 #, php-format diff --git a/po/en_GB.po b/po/en_GB.po index 6f5a3a240c45..32f2201d6432 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-23 00:01+0200\n" -"Last-Translator: Robert Readman \n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-26 13:27+0200\n" +"Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Search" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Search" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Go" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Database %1$s has been created." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Database comment: " @@ -132,9 +132,9 @@ msgstr "Database comment: " msgid "Table comments" msgstr "Table comments" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Table comments" msgid "Column" msgstr "Column" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Column" msgid "Type" msgstr "Type" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Links to" msgid "Comments" msgstr "Comments" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Comments" msgid "No" msgstr "No" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Unselect All" msgid "The database name is empty!" msgstr "The database name is empty!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Command" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Remove database" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Drop the database (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Data only" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Switch to copied database" msgid "Collation" msgstr "Collation" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Edit or export relational schema" @@ -498,99 +497,97 @@ msgstr "SQL query on database %s:" msgid "Submit Query" msgstr "Submit Query" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d row affected by the last statement inside the procedure" msgstr[1] "%d rows affected by the last statement inside the procedure" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "Execution results of routine %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 -#, fuzzy, php-format -#| msgid "The following queries have been executed:" +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 +#, php-format msgid "The following query has failed: \"%s\"" -msgstr "The following queries have been executed:" +msgstr "The following query has failed: \"%s\"" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL said: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "Error in processing request" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 -#, fuzzy, php-format -#| msgid "No routine with name %s found in database %s" +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 +#, php-format msgid "No routine with name %1$s found in database %2$s" -msgstr "No routine with name %s found in database %s" +msgstr "No routine with name %1$s found in database %2$s" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "Execute routine" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "Export of routine %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Invalid routine type: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "Sorry, we failed to restore the dropped routine." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "The backed up query was:" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "Routine %1$s has been modified." -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "Routine %1$s has been created." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "One or more errors have occurred while processing your request:" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "Create routine" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "Edit routine" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -"The first line of the file contains the table column names (if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "View a structure`s contents by clicking on its name" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" -#: libraries/import/csv.php:42 -msgid "Column names: " -msgstr "Column names: " +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Edit its structure by following the \"Structure\" link" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Go to database" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "settings" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Go to table" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Go to view" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." + +#: libraries/import/csv.php:42 +msgid "Column names: " +msgstr "Column names: " #: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 @@ -6088,42 +6258,6 @@ msgstr "Column names" msgid "This plugin does not support compressed imports!" msgstr "This plug-in does not support compressed imports!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" -"The following structures have either been created or altered. Here you can:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "View a structure`s contents by clicking on its name" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Change any of its settings by clicking the corresponding \"Options\" link" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Edit its structure by following the \"Structure\" link" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Go to database" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "settings" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Go to table" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Go to view" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Import percentages as proper decimals (ex. 12.00% to .12)" @@ -6148,42 +6282,6 @@ msgstr "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "No index defined!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unique" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Packed" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinality" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "The primary key has been dropped" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Index %s has been dropped" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6194,27 +6292,6 @@ msgstr "None" msgid "Convert to Kana" msgstr "Convert to Kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d row affected." -msgstr[1] "%1$d rows affected." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d row deleted." -msgstr[1] "%1$d rows deleted." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d row inserted." -msgstr[1] "%1$d rows inserted." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "From" @@ -6453,18 +6530,6 @@ msgstr "Reload navigation frame" msgid "This format has no options" msgstr "This format has no options" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Could not save recent table" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Recent tables" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "There are no recent tables" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "not OK" @@ -6846,6 +6911,61 @@ msgstr "Difference" msgid "Target database" msgstr "Target database" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Run SQL query/queries on server %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Run SQL query/queries on database %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Clear" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Columns" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Bookmark this SQL query" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Let every user access this bookmark" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Replace existing bookmark of same name" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Do not overwrite this query from outside the window" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Delimiter" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Show this query here again " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "View only" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Location of the text file" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "web server upload directory" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6908,61 +7028,6 @@ msgstr "Invalid Identifer" msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Run SQL query/queries on server %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Run SQL query/queries on database %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Clear" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Columns" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Bookmark this SQL query" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Let every user access this bookmark" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Replace existing bookmark of same name" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Do not overwrite this query from outside the window" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Delimiter" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Show this query here again " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "View only" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Location of the text file" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "web server upload directory" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -6972,49 +7037,6 @@ msgstr "" "The SQL validator could not be initialised. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"There is no detailed status information available for this storage engine." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s is available on this MySQL server." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s has been disabled for this MySQL server." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "This MySQL server does not support the %s storage engine." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Invalid database" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Invalid table name" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Error renaming table %1$s to %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Table %s has been renamed to %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Could not save table UI preferences" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Table seems to be empty!" @@ -7135,38 +7157,6 @@ msgstr "PARTITION definition" msgid "+ Add a value" msgstr "+ Add a new value" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "No valid image path for theme %s found!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "No preview available." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "take it" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Default theme %s not found!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Theme %s not found!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Theme path not found for theme %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "Theme" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8203,13 +8193,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/es.po b/po/es.po index 8f2302cbd4ab..b888b82c24a5 100644 --- a/po/es.po +++ b/po/es.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-22 22:33+0200\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-24 23:09+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Buscar" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Continuar" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "La base de datos %1$s ha sido creada." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Comentario de la base de datos: " @@ -132,9 +132,9 @@ msgstr "Comentario de la base de datos: " msgid "Table comments" msgstr "Comentarios de la tabla" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Comentarios de la tabla" msgid "Column" msgstr "Columna" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Columna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Enlaces a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Comentarios" msgid "No" msgstr "No" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Deseleccionar todo" msgid "The database name is empty!" msgstr "¡El nombre de la base de datos está vacío!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "La base de datos %s ha sido renombrada a %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "La base de datos %s ha sido copiada a %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Renombrar la base de datos a" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Comando" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Eliminar base de datos" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "La base de datos %s ha sido eliminada." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Eliminar la base de datos (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copiar la base de datos a" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Únicamente la estructura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Estructura y datos" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Solamente datos" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Añada %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Añadir restricciones" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Seleccionar la base de datos copiada" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Seleccionar la base de datos copiada" msgid "Collation" msgstr "Cotejamiento" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. " "Para saber por qué haz clic %saquí%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Editar o exportar esquema relacional" @@ -500,100 +499,98 @@ msgstr "Consulta a la base de datos %s:" msgid "Submit Query" msgstr "Ejecutar la consulta" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Su consulta se ejecutó con éxito" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d fila afectada por la última sentencia del procedimiento" msgstr[1] "%d filas afectadas por la última sentencia del procedimiento" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "Resultados de la ejecución de la rutina %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 -#, fuzzy, php-format -#| msgid "The following queries have been executed:" +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 +#, php-format msgid "The following query has failed: \"%s\"" -msgstr "Se ejecutaron las siguentes consultas:" +msgstr "Falló la siguiente consulta: \"%s\"" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "Error al procesar la petición" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 -#, fuzzy, php-format -#| msgid "No routine with name %s found in database %s" +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 +#, php-format msgid "No routine with name %1$s found in database %2$s" -msgstr "No se encontró rutina con nombre %s en la base de datos %s" +msgstr "No se encontró rutina con nombre %1$s en la base de datos %2$s" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "Ejecutar rutina" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "Exportar la rutina %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rutina inválido: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "La consulta respaldada era:" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "Se modificó la rutina %1$s." -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "Se creó la rutina %1$s." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "Ocurrieron uno o más errores al procesar el pedido:" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "Crear rutina" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "Editar rutina" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" -"La primer línea del archivo contiene los nombres de columna de la tabla " -"(si no está activado la primera línea será parte de los datos)" +"The following structures have either been created or altered. Here you can:" +msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:" -#: libraries/import/csv.php:40 -msgid "" +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Ver los contenidos de una estructura pulsando en su nombre" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" +"Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" " +"correspondiente" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Edite su estructura siguiendo el enlace \"Estructura\"" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Ir a la base de datos" + +# This needs a bug opened due to way of building string not translation- +# friendly +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "configuración" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Ir a la tabla" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Ir a la vista" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"La primer línea del archivo contiene los nombres de columna de la tabla " +"(si no está activado la primera línea será parte de los datos)" + +#: libraries/import/csv.php:40 +msgid "" "If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " "separated by commas and not enclosed in quotations." @@ -6216,44 +6390,6 @@ msgstr "Nombre de las columnas" msgid "This plugin does not support compressed imports!" msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Ver los contenidos de una estructura pulsando en su nombre" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" " -"correspondiente" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Edite su estructura siguiendo el enlace \"Estructura\"" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Ir a la base de datos" - -# This needs a bug opened due to way of building string not translation- -# friendly -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "configuración" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Ir a la tabla" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Ir a la vista" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6282,42 +6418,6 @@ msgstr "" "El archivo XML especificado estaba incompleto o mal formado. Por favor " "corrija el problema e intente nuevamente." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "¡No se ha definido ningún índice!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Único" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Empaquetado" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinalidad" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "La clave primaria ha sido eliminada" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "El índice %s ha sido eliminado" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar " -"uno." - # male gender due to referring to encoding modes #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" @@ -6329,27 +6429,6 @@ msgstr "Ninguno" msgid "Convert to Kana" msgstr "Convertir a Kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d fila afectada." -msgstr[1] "%1$d filas afectadas." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d fila eliminada." -msgstr[1] "%1$d filas eliminadas." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d fila insertada." -msgstr[1] "%1$d filas insertadas." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "De" @@ -6588,18 +6667,6 @@ msgstr "Recargar el marco de navegación" msgid "This format has no options" msgstr "Este formato no tiene opciones" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "No se pudo guardar la tabla reciente" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Tablas recientes" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "No existen tablas recientes" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "no recibió el OK" @@ -6984,6 +7051,61 @@ msgstr "Diferencia" msgid "Target database" msgstr "Base de datos objetivo" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Ejecute la o las consultas SQL en el servidor %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Limpiar" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Columnas" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Guardar esta consulta en favoritos" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Permitir que todo usuario pueda acceder a este favorito" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Reemplazar el favorito existente que tenga el mismo nombre" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "No sobreescribir esta consulta desde fuera de la ventana" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Delimitador" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Mostrar esta consulta otra vez " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Solamente ver" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Localización del archivo de texto" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "directorio en el servidor web para subir los archivos" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7049,61 +7171,6 @@ msgstr "El identificador no es válido" msgid "Unknown Punctuation String" msgstr "Signo de puntuación desconocido" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Ejecute la o las consultas SQL en el servidor %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Limpiar" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Columnas" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Guardar esta consulta en favoritos" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Permitir que todo usuario pueda acceder a este favorito" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Reemplazar el favorito existente que tenga el mismo nombre" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "No sobreescribir esta consulta desde fuera de la ventana" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Delimitador" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Mostrar esta consulta otra vez " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Solamente ver" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Localización del archivo de texto" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "directorio en el servidor web para subir los archivos" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7113,51 +7180,6 @@ msgstr "" "El validador de SQL no pudo inicializarse. Por favor revise si ha instalado " "las extensiones php necesarias, como están descritas en la %sdocumentación%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"No existe información detallada acerca de las condiciones en que se " -"encuentra este motor de almacenamiento." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s está disponible en este servidor MySQL." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s ha sido deshabilitado para este motor de almacenamiento." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "" -"Este servidor MySQL no es compatible con el motor de almacenamiento %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "La base de datos no es válida" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "El nombre de la tabla no es válido" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Error al cambiar el nombre de la tabla %1$s a %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabla %s ahora se llama %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "No se pudieron guardar las preferencias de interfaz" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "La tabla, ¡parece estar vacía!" @@ -7281,38 +7303,6 @@ msgstr "definición de la PARTICIÓN" msgid "+ Add a value" msgstr "+ Agregar un nuevo valor" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "¡No se halló la ruta de imágenes para el tema %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "No existe una previsualización disponible." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "tómelo" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "¡No se halló el tema predeterminado %s!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "¡No se halló el tema %s!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "¡No se halló la ruta del tema %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "Tema" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7631,8 +7621,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "El almacenamiento de configuración phpMyAdmin no está completamente " -"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" -"sPulsa aquí para averiguar por qué%s." +"configurado, algunas funcionalidades extendidas fueron deshabilitadas. " +"%sPulsa aquí para averiguar por qué%s." #: main.php:314 msgid "" @@ -8382,8 +8372,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " "las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " diff --git a/po/et.po b/po/et.po index 9d040b93bc15..e216391dc132 100644 --- a/po/et.po +++ b/po/et.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "Otsi" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "Otsi" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Mine" @@ -119,7 +119,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Andmebaas %s kustutatud." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Andmebaasi kommentaar: " @@ -129,9 +129,9 @@ msgstr "Andmebaasi kommentaar: " msgid "Table comments" msgstr "Tabeli kommentaarid" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "Tabeli kommentaarid" msgid "Column" msgstr "Väljade nimed" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "Väljade nimed" msgid "Type" msgstr "Tüüp" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "Lingib " msgid "Comments" msgstr "Kommentaarid" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "Kommentaarid" msgid "No" msgstr "Ei" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -261,82 +260,82 @@ msgstr "Puhasta kõik" msgid "The database name is empty!" msgstr "Andmebaasi nimi on tühi!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Andmebaas %s on ümber nimetatud %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Andmebaas %s on kopeeritud %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Käsk" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Andmebaas %s kustutatud." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Pole andmebaase" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopeeri andmebaas" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Ainult struktuur" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktuur ja andmed" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Ainult andmed" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Lisa piirangud" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Mine kopeeritud andmebaasile" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -345,7 +344,7 @@ msgstr "Mine kopeeritud andmebaasile" msgid "Collation" msgstr "Määrang" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -357,7 +356,7 @@ msgstr "" "Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda " "miks see nii on, vajutage %ssiia%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -510,105 +509,105 @@ msgstr "SQL-päring andmebaasist %s:" msgid "Submit Query" msgstr "Lae päring" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Teie SQL päring täideti edukalt" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Lubab salvestatud rutiinide käivituse." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t. null rida)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL ütles: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Protsessid" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Andmebaasist ei leitud tabeleid." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "Importige failid" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Vigane serveri indeks: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabel %s kustutatud" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabel %s kustutatud" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Suhte loomine (relation)" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " +"The following structures have either been created or altered. Here you can:" +msgstr "" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Pole andmebaase" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +#, fuzzy +msgid "Go to table" +msgstr "Pole andmebaase" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" msgstr "" @@ -6266,42 +6447,6 @@ msgstr "Väljade nimed" msgid "This plugin does not support compressed imports!" msgstr "See plugin ei toeta pakitud importe!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Pole andmebaase" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "Pole andmebaase" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6326,40 +6471,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Indeksit pole defineeritud!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unikaalne" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kasulikkus" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primaarne võti kustutatud" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeks %s kustutatud" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6372,29 +6483,6 @@ msgstr "Pole" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Ridu pole valitud" -msgstr[1] "Ridu pole valitud" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Ridu pole valitud" -msgstr[1] "Ridu pole valitud" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6639,22 +6727,6 @@ msgstr "" msgid "This format has no options" msgstr "Sellel formaadil pole seadeid" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\"" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Pole tabeleid" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -msgid "There are no recent tables" -msgstr "Kontrolli tabelit" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Ei ole korras" @@ -7046,69 +7118,6 @@ msgstr "" msgid "Target database" msgstr "Otsi andmebaasist" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Tundub, et teie SQL päringus on viga. MySQLi serveri error peaks ilmuma " -"allpool, kui seal on midagi, siis peaks see teil aitama leia vea põhjust." - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"On võimalus, et te leidsite vea SQL parseris. Palun kontrollige oma päringut " -"täpsemalt ja kontrollige, et jutumärgid/ülakomad oleks korrektselt " -"lõpetatud. Veel on võimalik, et te loete sisse faili kus on binaarne info " -"väljaspool varjestatud tekstiala. Samuti võiksite te proovida oma päringut " -"MySQLi käsureal. MySQLi viga väljastatakse päringu all, kui seal tõesti on " -"mõni viga, siis see võib aidata teil leida vea algpõhjuseid. Kui teil on " -"peale seda ikka veel probleeme või kui mu parser keeldub töötamast ning " -"MySQL käsurida töötab, siis palun vähendage oma päringuid üksiku päringuni, " -"mis põhjustab probleeme ja sisestage vea raport koos viga põhjustanud " -"päringuga LÕIGET sektsioonis allpool:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "ALUSTA LÕIGET" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "LÕPETA LÕIGE" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "ALUSTA PUHAST" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "LÕPETA PUHAS" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Sulgemata jutumärk/ülakoma" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Vigane identifikaator" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Tundmatu suunav tekst" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7167,56 +7176,77 @@ msgstr "tekstifaili asukoht" msgid "web server upload directory" msgstr "webiserveri üleslaadimiskataloogi" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL-i valideerijat ei suudetud avada. Palun kontrollige, et te olete " -"installinud vastavad php moodulid nagu on kirjeldatud %sdokumentatsioonis%s." +"Tundub, et teie SQL päringus on viga. MySQLi serveri error peaks ilmuma " +"allpool, kui seal on midagi, siis peaks see teil aitama leia vea põhjust." -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Detailne seisuinformatsioon antud varundusmootori kohta puudub." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"On võimalus, et te leidsite vea SQL parseris. Palun kontrollige oma päringut " +"täpsemalt ja kontrollige, et jutumärgid/ülakomad oleks korrektselt " +"lõpetatud. Veel on võimalik, et te loete sisse faili kus on binaarne info " +"väljaspool varjestatud tekstiala. Samuti võiksite te proovida oma päringut " +"MySQLi käsureal. MySQLi viga väljastatakse päringu all, kui seal tõesti on " +"mõni viga, siis see võib aidata teil leida vea algpõhjuseid. Kui teil on " +"peale seda ikka veel probleeme või kui mu parser keeldub töötamast ning " +"MySQL käsurida töötab, siis palun vähendage oma päringuid üksiku päringuni, " +"mis põhjustab probleeme ja sisestage vea raport koos viga põhjustanud " +"päringuga LÕIGET sektsioonis allpool:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s on saadaval selles MySQL serveris." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "ALUSTA LÕIGET" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s on keelatud selles MySQL serveris." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "LÕPETA LÕIGE" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "See MySQL server ei toeta %s varundusmootorit." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "ALUSTA PUHAST" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Vigane andmebaas" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "LÕPETA PUHAS" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Vigane tabeli nimi" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Viga tabeli nime %1$s muutimsel %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Sulgemata jutumärk/ülakoma" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabel %s on ümber nimetatud %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Vigane identifikaator" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Tundmatu suunav tekst" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL-i valideerijat ei suudetud avada. Palun kontrollige, et te olete " +"installinud vastavad php moodulid nagu on kirjeldatud %sdokumentatsioonis%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7349,38 +7379,6 @@ msgstr "" msgid "+ Add a value" msgstr "Lisa uus kasutaja" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Ei leia pildi kataloogi teemale %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Eelvaade pole saadaval." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "võta see" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Ei leia vaikimisi teemat %s!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Ei leia teemat %s!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Ei leia kataloogi teemale %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8489,8 +8487,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges " "tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda " diff --git a/po/eu.po b/po/eu.po index baa134b94525..51f6955b5711 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Bilatu" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Bilatu" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Joan" @@ -120,7 +120,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%s datu-basea ezabatua izan da." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Datu-basearen iruzkina: " @@ -130,9 +130,9 @@ msgstr "Datu-basearen iruzkina: " msgid "Table comments" msgstr "Taularen iruzkinak" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Taularen iruzkinak" msgid "Column" msgstr "Zutabe izenak" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Zutabe izenak" msgid "Type" msgstr "Mota" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Estekak honi:" msgid "Comments" msgstr "Iruzkinak" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Iruzkinak" msgid "No" msgstr "Ez" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,84 +262,84 @@ msgstr "Desautatu dena" msgid "The database name is empty!" msgstr "Taularen izena hutsik dago!" -#: db_operations.php:271 +#: db_operations.php:272 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "%s taula %s-(e)ra berrizendatua izan da" -#: db_operations.php:275 +#: db_operations.php:276 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "%s taula hona kopiatua izan da: %s." -#: db_operations.php:403 +#: db_operations.php:404 #, fuzzy msgid "Rename database to" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Komandoa" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy msgid "Remove database" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "%s datu-basea ezabatua izan da." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Datu-baserik ez" -#: db_operations.php:486 +#: db_operations.php:487 #, fuzzy msgid "Copy database to" msgstr "Datu-baserik ez" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Egitura soilik" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Egitura eta datuak" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Datuak soilik" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Murrizketak gehitu" -#: db_operations.php:527 +#: db_operations.php:528 #, fuzzy msgid "Switch to copied database" msgstr "Kopiatutako taulara aldatu" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -349,7 +348,7 @@ msgstr "Kopiatutako taulara aldatu" msgid "Collation" msgstr "Ordenamendua" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -361,7 +360,7 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -514,102 +513,102 @@ msgstr "SQL-kontsulta %s datu-basean:" msgid "Submit Query" msgstr "Kontsulta bidali" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Zure SQL-kontsula arrakastaz burutu da" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prozesuak" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Ez da taularik aurkitu datu-basean." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "%s taula ezabatu egin da" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "%s taula ezabatu egin da" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Zerbitzariaren bertsioa" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " @@ -6145,41 +6320,6 @@ msgstr "Zutabe izenak" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Datu-baserik ez" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6202,40 +6342,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Ez dago indizerik definituta!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Bakarra" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinalitatea" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Lehen mailako gakoa ezabatu da" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "%s indizea ezabatu da" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6248,27 +6354,6 @@ msgstr "Batez" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6515,19 +6600,6 @@ msgstr "" msgid "This format has no options" msgstr "Formato honek ez du aukerarik" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Taularik ez" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Okerra" @@ -6921,69 +6993,6 @@ msgstr "" msgid "Target database" msgstr "Datu-basean bilatu" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Ematen du zure SQL kontsultan errore bat dagoela. MySQL zerbitzariak " -"itzulitako erroreak, baldin badago, arazoa diagnostikatzen lagundu zaitzake" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Baliteke zuk SQL analizatzailean errore bat topatu izana. Mesedez arretaz " -"aztertu zure kontsulta, eta egiaztatu komatxoak zuzen erabiliak eta " -"bikoitiak direla. Akatsaren bestelako jatorri bat izan liteke zu datu " -"binariodun fitxategi bat igotzen saiatzea mugatutako testu-eremutik at. Zure " -"kontsulta MySQL-ren komando-interfazean ere exekutatzen saia zenezake. MySql " -"zeritzariak itzulitako erroreak, baldin badago, arazoa diagnostikatzen " -"lagundu zaitzake. Arazoak bere horretan badirau edota komando-interfazeak " -"arrakasta duen lekuan analizatzaileak huts egiten badu, mesedez murriztu " -"ezazu zure SQL kontsulta arazoa sortzen duen zatira, eta bidal ezazu errore-" -"txosten bat behean seinalaturiko MOZKETA atalean datu-katea paratuz:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "EBAKINAREN HASIERA" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "EBAKINAREN AMAIERA" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "IRAULKETAREN HASIERA" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "IRAULKETAREN AMAIERA" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Itxi gabeko komatxoak" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Indentifikatzaile okerra" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Puntuazio ikurra ezezaguna" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -7041,57 +7050,78 @@ msgstr "Testu-fitxategiaren kokapena" msgid "web server upload directory" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"Ezin izan da SQl balidatzailea hasieratu. Mesedez egiazta ezazu ea " -"beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s " -"azaltzen den moduan." +"Ematen du zure SQL kontsultan errore bat dagoela. MySQL zerbitzariak " +"itzulitako erroreak, baldin badago, arazoa diagnostikatzen lagundu zaitzake" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" +"Baliteke zuk SQL analizatzailean errore bat topatu izana. Mesedez arretaz " +"aztertu zure kontsulta, eta egiaztatu komatxoak zuzen erabiliak eta " +"bikoitiak direla. Akatsaren bestelako jatorri bat izan liteke zu datu " +"binariodun fitxategi bat igotzen saiatzea mugatutako testu-eremutik at. Zure " +"kontsulta MySQL-ren komando-interfazean ere exekutatzen saia zenezake. MySql " +"zeritzariak itzulitako erroreak, baldin badago, arazoa diagnostikatzen " +"lagundu zaitzake. Arazoak bere horretan badirau edota komando-interfazeak " +"arrakasta duen lekuan analizatzaileak huts egiten badu, mesedez murriztu " +"ezazu zure SQL kontsulta arazoa sortzen duen zatira, eta bidal ezazu errore-" +"txosten bat behean seinalaturiko MOZKETA atalean datu-katea paratuz:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "EBAKINAREN HASIERA" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "EBAKINAREN AMAIERA" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "IRAULKETAREN HASIERA" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "IRAULKETAREN AMAIERA" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Itxi gabeko komatxoak" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "%s taula %s-(e)ra berrizendatua izan da" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Indentifikatzaile okerra" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Puntuazio ikurra ezezaguna" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"Ezin izan da SQl balidatzailea hasieratu. Mesedez egiazta ezazu ea " +"beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s " +"azaltzen den moduan." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7224,38 +7254,6 @@ msgstr "" msgid "+ Add a value" msgstr "Erabiltzaile berria gehitu" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8344,8 +8342,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " "pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " diff --git a/po/fa.po b/po/fa.po index ea6bf9062eca..eaff7fcb5a48 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -42,13 +42,13 @@ msgstr "" msgid "Search" msgstr "جستجو" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -61,18 +61,18 @@ msgstr "جستجو" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "تاييد" @@ -119,7 +119,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "پايگاه داده %1$s ایجاد شده است." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "توضيحات پایگاه داده:" @@ -129,9 +129,9 @@ msgstr "توضيحات پایگاه داده:" msgid "Table comments" msgstr "توضيحات جدول" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -140,12 +140,12 @@ msgstr "توضيحات جدول" msgid "Column" msgstr "ستون" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -155,9 +155,9 @@ msgstr "ستون" msgid "Type" msgstr "نوع" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -195,13 +195,12 @@ msgstr "پيوند به" msgid "Comments" msgstr "توضيحات" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -212,17 +211,17 @@ msgstr "توضيحات" msgid "No" msgstr "خير" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -259,79 +258,79 @@ msgstr "عدم انتخاب همه" msgid "The database name is empty!" msgstr "نام پایگاه داده وارد نشده‌ است!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "نام پایگاه داده %s به %s تغییر داده شد" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "پایگاه داده %s در %s کپی شد" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "تغییر نام پایگاه داده به" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "دستور" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "حذف پایگاه داده" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "پايگاه داده %s حذف گرديد." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "حذف پایگاه داده" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "کپی کردن پابگاه داده به" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "فقط ساختار" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "ساختار و داده‌ها" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "فقط داده‌ها" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "پیش از کپی پایگاه داده ایجاد شود" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "مقدار افزایشی خودکار اضافه شود" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "اعمال محدودیت ها" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "تعویض به پایگاه داده ی کپی شده" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -340,7 +339,7 @@ msgstr "تعویض به پایگاه داده ی کپی شده" msgid "Collation" msgstr "مقایسه" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -352,7 +351,7 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %sاينجا%s را بزنيد ." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "ویرایش یا صدور نمای رابطه ای" @@ -499,99 +498,99 @@ msgstr "پرس و جوي SQL از پايگاه داده %s:" msgid "Submit Query" msgstr "Submit Query" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "پرس و جوي SQL شما با موفقيت اجرا گرديد" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "پيغام MySQL :" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "در پايگاه داده هيچ جدولي یافت نشد." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "جدول %s حذف گرديد" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "جدول %s حذف گرديد" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "نسخه سرور" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "No databases" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 msgid "" "If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " @@ -6054,41 +6229,6 @@ msgstr "نام ستونها" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "No databases" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6111,40 +6251,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "هيچ فهرستي تعريف‌نشده‌است!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "يكتا" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "كليد اصلي حذف گرديد" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "فهرست %s حذف گرديد" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6157,27 +6263,6 @@ msgstr "خير" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6421,19 +6506,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "No tables" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "not OK" @@ -6822,57 +6894,6 @@ msgstr "" msgid "Target database" msgstr "جستجو در پايگاه‌داده" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -6931,53 +6952,62 @@ msgstr "محل پرونده متني" msgid "web server upload directory" msgstr "" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" + +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" + +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" msgstr "" -#: libraries/Table.class.php:1139 +#: libraries/sqlvalidator.lib.php:67 #, php-format -msgid "Table %s has been renamed to %s" -msgstr "جدول %s به %s تغيير نام داده‌شد" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -7004,9 +7034,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:106 msgid "" @@ -7041,9 +7071,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:352 msgid "ENUM or SET data too long?" @@ -7106,38 +7136,6 @@ msgstr "" msgid "+ Add a value" msgstr "افزودن يك كاربر جديد" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "پش دید موجود نمی باشد" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7340,8 +7338,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " -"، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " +"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:251 msgid "" @@ -8136,8 +8134,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/fi.po b/po/fi.po index c7bf0e574582..64a3d31fbbbb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Etsi" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Etsi" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Siirry" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Tietokannan kommentti: " @@ -132,9 +132,9 @@ msgstr "Tietokannan kommentti: " msgid "Table comments" msgstr "Taulun kommentit" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Taulun kommentit" msgid "Column" msgstr "Sarake" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Sarake" msgid "Type" msgstr "Tyyppi" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Linkitys sarakkeeseen:" msgid "Comments" msgstr "Kommentit" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Kommentit" msgid "No" msgstr "Ei" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Poista valinta kaikista" msgid "The database name is empty!" msgstr "Tietokannan nimi on tyhjä!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Tietokannan %s nimi on nyt %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Tietokanta %s on kopioitu tietokantaan %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Muuta tietokannan nimi" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Komento" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Tuhoa tietokanta" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Tietokanta %s on poistettu." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Tuhoa tietokanta (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Luo tietokannasta toinen tietokanta nimellä" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Vain rakenne" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Rakenne ja tiedot" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Vain tiedot" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopiointia" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Lisää rajoitteet" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Siirry kopioituun tietokantaan" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Siirry kopioituun tietokantaan" msgid "Collation" msgstr "Aakkosjärjestys" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "phpMyAdminin asetusmuisti on poistettu käytöstä. Katso %slisätietoja%s, " "mistä tämä johtuu." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Relaatioskeeman muokkaus tai vienti" @@ -498,110 +497,110 @@ msgstr "Suorita SQL-kysely tietokannassa %s:" msgid "Submit Query" msgstr "Suorita" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL-kyselyn suoritus onnistui" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Sallii talletettujen rutiinien suorittamisen." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Seuraavat kyselyt on suoritettu:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Virhe pyynnön käsittelyssä" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Tietokannassa ei ole tauluja." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Vie oletusarvot" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Virheellinen palvelimen indeksi: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Taulu %s on poistettu" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Taulu %1$s on luotu." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Luo relaatio" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Muokkaustila" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" +"The following structures have either been created or altered. Here you can:" +msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "näyttää rakenteen sisällön painamalla sen nimeä" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" +"muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" -#: libraries/import/csv.php:42 -#, fuzzy -#| msgid "Column names" -msgid "Column names: " +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Siirry tietokantaan" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "asetukset" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Siirry tauluun" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Siirry näkymään" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +#, fuzzy +#| msgid "Column names" +msgid "Column names: " msgstr "Sarakkeiden nimet" #: libraries/import/csv.php:62 libraries/import/csv.php:75 @@ -6366,41 +6549,6 @@ msgstr "Sarakkeiden nimet" msgid "This plugin does not support compressed imports!" msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "näyttää rakenteen sisällön painamalla sen nimeä" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Siirry tietokantaan" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "asetukset" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Siirry tauluun" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Siirry näkymään" - #: libraries/import/ods.php:28 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" @@ -6433,42 +6581,6 @@ msgstr "" "Määritetty XML-tiedosto on joko epämuotoinen tai vaillinainen. Korjaa " "ongelma ja yritä uudestaan." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Indeksiä ei ole määritelty!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Uniikki" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Pakattu" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinaliteetti" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Perusavain on poistettu" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeksi %s on poistettu" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee " -"poistaa." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6481,27 +6593,6 @@ msgstr "Ei mitään" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d rivi(ä) muutettu." -msgstr[1] "%1$d rivi(ä) muutettu." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d rivi(ä) poistettu." -msgstr[1] "%1$d rivi(ä) poistettu." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d rivi lisätty." -msgstr[1] "%1$d riviä lisätty." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6747,24 +6838,6 @@ msgstr "Mukauta navigointikehystä" msgid "This format has no options" msgstr "Tälle tiedostomuodolle ei ole valinta-asetuksia" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Cannot load or save configuration" -msgid "Could not save recent table" -msgstr "Asetuksia ei voi ladata tai tallentaa" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Laske taulujen määrä" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Palvelimia ei ole määritelty" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Ei kunnossa" @@ -7156,67 +7229,6 @@ msgstr "Ero" msgid "Target database" msgstr "Kohdetietokanta" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Käyttämässäsi SQL-lauseessa on virhe. MySQL-palvelimen antama virheilmoitus " -"näkyy alla, mikäli palvelin sellaisen antoi." - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Olet ehkä löytänyt SQL-jäsentimestä ohjelmointivirheen. Tarkista käyttämäsi " -"SQL-lause, erityisesti lainausmerkit merkkijonojen alusta ja lopusta. Toinen " -"mahdollinen virheen aiheuttaja on se, että olet siirtämässä tiedostoa, jossa " -"on binääritietoa lainausmerkkien ulkopuolella. Jos mahdollista, kokeile SQL-" -"lausetta suoraan komentoriviltä. MySQL-palvelimen antama virheilmoitus näkyy " -"alla, mikäli palvelin sellaisen antoi. Jos lause toimi komentoriviltä muttei " -"phpMyAdminista, etsi rivi jolla virheilmoitus ilmeni ja lähetä meille " -"ilmoitus virheestä alla olevan koodin kera:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "ALOITA CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "LOPETA CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "ALOITA RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "LOPETA RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Merkkijonon lopusta puuttuu lainausmerkki" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Tunniste ei kelpaa" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Tuntematon välimerkki" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7272,57 +7284,75 @@ msgstr "Tiedoston sijainti" msgid "web server upload directory" msgstr "palvelimen lähetyshakemisto" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-" -"laajennukset on asennettu. Lisätietoa on %sohjeissa%s." +"Käyttämässäsi SQL-lauseessa on virhe. MySQL-palvelimen antama virheilmoitus " +"näkyy alla, mikäli palvelin sellaisen antoi." -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -"Tämän tallennusmoottorin tilasta ei ole saatavilla yksityiskohtaisia tietoja." +"Olet ehkä löytänyt SQL-jäsentimestä ohjelmointivirheen. Tarkista käyttämäsi " +"SQL-lause, erityisesti lainausmerkit merkkijonojen alusta ja lopusta. Toinen " +"mahdollinen virheen aiheuttaja on se, että olet siirtämässä tiedostoa, jossa " +"on binääritietoa lainausmerkkien ulkopuolella. Jos mahdollista, kokeile SQL-" +"lausetta suoraan komentoriviltä. MySQL-palvelimen antama virheilmoitus näkyy " +"alla, mikäli palvelin sellaisen antoi. Jos lause toimi komentoriviltä muttei " +"phpMyAdminista, etsi rivi jolla virheilmoitus ilmeni ja lähetä meille " +"ilmoitus virheestä alla olevan koodin kera:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s on käytettävissä tällä MySQL-palvelimella." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "ALOITA CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "LOPETA CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "ALOITA RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Virheellinen tietokanta" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "LOPETA RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Virheellinen taulun nimi" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Virhe annettaessa taululle %1$s nimeä %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Merkkijonon lopusta puuttuu lainausmerkki" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Taulun %s nimi on nyt %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Tunniste ei kelpaa" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Tuntematon välimerkki" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-" +"laajennukset on asennettu. Lisätietoa on %sohjeissa%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7454,38 +7484,6 @@ msgstr "PARTITION-määritelmä" msgid "+ Add a value" msgstr "Lisää uusi palvelin" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Kelvollista polkua teemalle %s ei löytynyt." - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Esikatselu ei ole saatavilla." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "käytä tätä" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Oletusteemaa %s ei löydy!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Teemaa %s ei löydy!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Teeman %s polkua ei löydy!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8628,8 +8626,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " "käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " @@ -10271,9 +10269,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/fr.po b/po/fr.po index 85f2468f5663..a64cc2096e94 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-23 15:36+0200\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-26 13:35+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Rechercher" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Rechercher" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Exécuter" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "La base de données %1$s a été créée." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Commentaire sur la base de données: " @@ -133,9 +133,9 @@ msgstr "Commentaire sur la base de données: " msgid "Table comments" msgstr "Commentaires sur la table" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "Commentaires sur la table" msgid "Column" msgstr "Colonne" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "Colonne" msgid "Type" msgstr "Type" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Relié à" msgid "Comments" msgstr "Commentaires" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "Commentaires" msgid "No" msgstr "Non" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,79 +262,79 @@ msgstr "Tout désélectionner" msgid "The database name is empty!" msgstr "Le nom de la base de données est vide !" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "La base de données %s a été renommée en %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "La base de données %s a été copiée sur %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Commande" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Supprimer la base de données" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "La base de données %s a été effacée." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Supprimer la base de données (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copier la base de données vers" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Structure seule" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Structure et données" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Données seulement" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Aller à la base de données copiée" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,7 +343,7 @@ msgstr "Aller à la base de données copiée" msgid "Collation" msgstr "Interclassement" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -353,7 +352,7 @@ msgstr "" "Le stockage de configurations phpMyAdmin a été désactivé. Pour une analyse " "du problème, cliquez %sici%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Éditer ou exporter un schéma relationnel" @@ -499,101 +498,100 @@ msgstr "Requête SQL sur la base %s: " msgid "Submit Query" msgstr "Exécuter la requête" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Votre requête SQL a été exécutée avec succès" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d ligne a été affectée par le dernier énoncé de la procédure" msgstr[1] "%d lignes ont été affectées par le dernier énoncé de la procédure" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "Résultats de l'exécution de la procédure %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 -#, fuzzy, php-format -#| msgid "The following queries have been executed:" +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 +#, php-format msgid "The following query has failed: \"%s\"" msgstr "La requête «%s» a échoué" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL a répondu: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "Erreur dans le traitement de la requête" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, php-format msgid "No routine with name %1$s found in database %2$s" msgstr "" "Aucune procédure portant le nom %1$s n'a été trouvée dans la base de données " "%2$s" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "Exécuter la procédure" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "Exporter la procédure %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Type de procédure invalide : «%s»" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "Désolé, il a été impossible de restaurer la procédure." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "La requête conservée est :" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "La procédure %1$s a été modifiée." -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "La procédure %1$s a été créée." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" "Au moins une erreur s'est produite lors du traitement de la requête :" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "Créer une procédure" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "Modifier une procédure" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" -msgstr "" -"Importer les pourcentages en tant que décimales (12.00% devient .12)" - -#: libraries/import/ods.php:29 -msgid "Import currencies (ex. $5.00 to 5.00)" -msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)" - -#: libraries/import/sql.php:33 -msgid "SQL compatibility mode:" -msgstr "Mode de compatibilité SQL :" - -#: libraries/import/sql.php:43 -msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro" - -#: libraries/import/xml.php:74 libraries/import/xml.php:130 -msgid "" -"The XML file specified was either malformed or incomplete. Please correct " -"the issue and try again." -msgstr "" -"Le fichier XML spécifié était mal formé ou incomplet. Veuillez le corriger " -"et essayer à nouveau." - -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Aucun index n'est défini !" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unique" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Compressé" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinalité" +#: libraries/import/ods.php:28 +msgid "Import percentages as proper decimals (ex. 12.00% to .12)" +msgstr "" +"Importer les pourcentages en tant que décimales (12.00% devient .12)" -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "La clé primaire a été effacée" +#: libraries/import/ods.php:29 +msgid "Import currencies (ex. $5.00 to 5.00)" +msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)" -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "L'index %s a été effacé" +#: libraries/import/sql.php:33 +msgid "SQL compatibility mode:" +msgstr "Mode de compatibilité SQL :" -#: libraries/Index.class.php:582 -#, php-format +#: libraries/import/sql.php:43 +msgid "Do not use AUTO_INCREMENT for zero values" +msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro" + +#: libraries/import/xml.php:74 libraries/import/xml.php:130 msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." +"The XML file specified was either malformed or incomplete. Please correct " +"the issue and try again." msgstr "" -"Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être " -"supprimé." +"Le fichier XML spécifié était mal formé ou incomplet. Veuillez le corriger " +"et essayer à nouveau." #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" @@ -6262,27 +6367,6 @@ msgstr "Aucune" msgid "Convert to Kana" msgstr "Conversion en kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d ligne affectée." -msgstr[1] "%1$d lignes affectées." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d ligne supprimée." -msgstr[1] "%1$d lignes supprimées." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d ligne insérée." -msgstr[1] "%1$d lignes insérées." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "Depuis" @@ -6521,18 +6605,6 @@ msgstr "Actualiser" msgid "This format has no options" msgstr "Ce format ne comporte pas d'options" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Impossible de sauvegarder l'historique des tables récentes" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Tables récentes" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Il n'y a pas de tables récentes" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "en erreur" @@ -6918,6 +6990,61 @@ msgstr "Différence" msgid "Target database" msgstr "Base de données cible" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Exécuter une ou des requêtes SQL sur le serveur %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Exécuter une ou des requêtes SQL sur la base %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Vider" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Colonnes" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Conserver cette requête SQL dans les signets" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Signet visible pour les autres utilisateurs" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Remplacer un signet existant du même nom" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Ne pas écraser cette requête depuis une autre fenêtre" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Délimiteur" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr "Afficher à nouveau la requête après exécution" + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Voir uniquement" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Emplacement du fichier texte" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "répertoire de transfert du serveur web" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6980,61 +7107,6 @@ msgstr "Identificateur invalide" msgid "Unknown Punctuation String" msgstr "Ponctuation invalide" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Exécuter une ou des requêtes SQL sur le serveur %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Exécuter une ou des requêtes SQL sur la base %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Vider" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Colonnes" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Conserver cette requête SQL dans les signets" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Signet visible pour les autres utilisateurs" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Remplacer un signet existant du même nom" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Ne pas écraser cette requête depuis une autre fenêtre" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Délimiteur" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr "Afficher à nouveau la requête après exécution" - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Voir uniquement" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Emplacement du fichier texte" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "répertoire de transfert du serveur web" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7042,52 +7114,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " -"PHP nécessaires ont bien été installées tel que décrit dans la %" -"sdocumentation%s." - -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Aucune information détaillée sur l'état n'est disponible pour ce moteur de " -"stockage." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s est disponible sur ce serveur MySQL." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s a été désactivé sur ce serveur MySQL." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Nom de base de données invalide" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Nom de table invalide" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Erreur lors du renommage de %1$s en %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "La table %s se nomme maintenant %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Impossible de sauvegarder les préférences d'interface de tables" +"PHP nécessaires ont bien été installées tel que décrit dans la " +"%sdocumentation%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7209,38 +7237,6 @@ msgstr "Définition de PARTITION" msgid "+ Add a value" msgstr "+ Ajouter une valeur" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Chemin des images inexistant pour le thème %s !" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Prévisualisation non disponible." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "utiliser celui-ci" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Thème par défaut %s inexistant !" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Thème %s inexistant !" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Chemin non trouvé pour le thème %s !" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "Thème" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8308,8 +8304,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin obtient la liste des privilèges directement à partir des " "tables MySQL. Le contenu de ces tables peut être différent des privilèges " @@ -9786,8 +9782,8 @@ msgid "" msgstr "" "Cette %soption%s ne devrait pas être activée car elle permet à un attaquant " "de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez " -"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%" -"s." +"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance" +"%s." #: setup/lib/index.lib.php:252 msgid "" @@ -9839,8 +9835,8 @@ msgid "" msgstr "" "Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 " "secondes peut causer des interruptions de la session de travail si le " -"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %" -"d)." +"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement " +"%d)." #: setup/lib/index.lib.php:262 #, php-format @@ -9859,8 +9855,8 @@ msgid "" "cookie validity%s must be set to a value less or equal to it." msgstr "" "Si vous utilisez l'authentification cookie et que le paramètre %sLogin " -"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%" -"s doit avoir une valeur plus petite ou égale à celui-ci." +"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity" +"%s doit avoir une valeur plus petite ou égale à celui-ci." #: setup/lib/index.lib.php:266 #, php-format @@ -9870,8 +9866,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %" -"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " +"Si vous l'estimez nécessaire, utilisez des paramètres de protection - " +"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " "Cependant, la protection par adresse IP peut ne pas être fiable si votre IP " "appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y " "compris, sont connectés." @@ -10117,10 +10113,8 @@ msgid "Label column" msgstr "Colonne pour étiquette" #: tbl_gis_visualization.php:167 -#, fuzzy -#| msgid "- none -" msgid "-- None --" -msgstr "- aucun -" +msgstr "-- Aucun --" #: tbl_gis_visualization.php:180 msgid "Spatial column" diff --git a/po/gl.po b/po/gl.po index 1edb1a25ff9a..281b376224d6 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Procurar" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Executar" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Creouse a base de datos %1$s." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Comentario da base de datos: " @@ -133,9 +133,9 @@ msgstr "Comentario da base de datos: " msgid "Table comments" msgstr "Comentarios da táboa" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -146,12 +146,12 @@ msgstr "Comentarios da táboa" msgid "Column" msgstr "Nomes das columnas" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -161,9 +161,9 @@ msgstr "Nomes das columnas" msgid "Type" msgstr "Tipo" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -201,13 +201,12 @@ msgstr "Vincúlase con" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -218,17 +217,17 @@ msgstr "Comentarios" msgid "No" msgstr "Non" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -265,83 +264,83 @@ msgstr "Non seleccionar nada" msgid "The database name is empty!" msgstr "Ese nome de base de datos non existe." -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Mudóuselle o nome á base de datos %s para %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Copiuse a base de datos %s para %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Orde" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Eliminouse a base de datos %s." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ir á base de datos" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copiar a base de datos para" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Só a estrutura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Estrutura e datos" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Só os datos" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREAR UNHA BASE DE DATOS antes de copiar" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Engadir limitacións" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Pasar á base de datos copiada" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -350,7 +349,7 @@ msgstr "Pasar á base de datos copiada" msgid "Collation" msgstr "Orde alfabética" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -362,7 +361,7 @@ msgstr "" "Desactivouse a funcionalidade adicional para o traballo con táboas " "vinculadas. Para saber o por que, prema %saquí%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -515,110 +514,110 @@ msgstr "Procura tipo SQL na base de datos %s:" msgid "Submit Query" msgstr "Enviar esta procura" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "A seu orde de SQL executouse sen problemas" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Permite executar rutinas almacenadas." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Executáronse as procuras seguintes:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesos" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Non se achou ningunha táboa na base de datos" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export functions" msgid "Export of routine %s" msgstr "Exportar as funcións" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "O índice do servidor non é válido: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Eliminouse a táboa %s" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Creouse a táboa %1$s." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Crear relación" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Modo de edición" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" - +"The following structures have either been created or altered. Here you can:" +msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Ver o contido dunha estrutura premendo o seu nome" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" +"Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\"" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Ir á base de datos" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "opcións" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Ir á táboa" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Ir á vista" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + #: libraries/import/csv.php:40 msgid "" "If the data in each row of the file is not in the same order as in the " @@ -6583,41 +6770,6 @@ msgstr "Nomes das columnas" msgid "This plugin does not support compressed imports!" msgstr "Este engadido non é capaz de realizar importacións comprimidas!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Ver o contido dunha estrutura premendo o seu nome" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\"" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Ir á base de datos" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "opcións" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Ir á táboa" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Ir á vista" - #: libraries/import/ods.php:28 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" @@ -6650,42 +6802,6 @@ msgstr "" "O ficheiro XML especificado estaba estragado ou incompleto. Corrixa o " "problema e ténteo de novo." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Non se definiu ningún índice" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Único" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Empaquetado" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinalidade" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Eliminouse a chave primaria" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Eliminouse o índice %s" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase " -"eliminar un deles" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6698,30 +6814,6 @@ msgstr "Ningunha" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, fuzzy, php-format -#| msgid "%1$d row(s) affected." -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d fileira(s) afectada(s)." -msgstr[1] "%1$d fileira(s) afectada(s)." - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "%1$d row(s) deleted." -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d fileira(s) eliminada(s)." -msgstr[1] "%1$d fileira(s) eliminada(s)." - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "%1$d row(s) inserted." -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d fileira(s) inserida(s)." -msgstr[1] "%1$d fileira(s) inserida(s)." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6967,24 +7059,6 @@ msgstr "Personalizar a moldura de navegación" msgid "This format has no options" msgstr "Este formato non ten opcións" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Cannot load or save configuration" -msgid "Could not save recent table" -msgstr "Non se puido cargar ou gravar a configuración" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Contar as táboas" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Non hai ningún servidor configurado" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "non conforme" @@ -7384,6 +7458,63 @@ msgstr "Diferenza" msgid "Target database" msgstr "Base de datos de destino" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Executar procura/s SQL no servidor %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Efectuar unha procura SQL na base de datos %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Limpar" + +#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Column names" +msgid "Columns" +msgstr "Nomes das columnas" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Gardar esta procura de SQL" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Permitir que calquera usuario poida acceder a este marcador" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Substituír un marcador xa existente que teña o mesmo nome" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Non escribir sobre esta procura desde fóra da xanela" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Delimitador" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Mostrar esta procura aquí outra vez " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Só visualizar" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Localización do arquivo de texto" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "directorio de recepción do servidor web" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7448,63 +7579,6 @@ msgstr "O identificador non é válido" msgid "Unknown Punctuation String" msgstr "Hai unha secuencia de puntuación que resulta descoñecida" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Executar procura/s SQL no servidor %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Efectuar unha procura SQL na base de datos %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Limpar" - -#: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" -msgid "Columns" -msgstr "Nomes das columnas" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Gardar esta procura de SQL" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Permitir que calquera usuario poida acceder a este marcador" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Substituír un marcador xa existente que teña o mesmo nome" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Non escribir sobre esta procura desde fóra da xanela" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Delimitador" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Mostrar esta procura aquí outra vez " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Só visualizar" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Localización do arquivo de texto" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "directorio de recepción do servidor web" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7514,50 +7588,6 @@ msgstr "" "Non foi posíbel iniciar o comprobador de SQL. Comprobe que ten instalados " "todos os engadidos de php tal e como se describe na %sdocumentación%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Non se conta con información de estado detallada sobre este motor de " -"almacenamento." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s está dispoñíbel neste servidor de MySQL." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s foi desactivado neste servidor de MySQL." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "A base de datos non é válida" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Non se admite este nome de táboa." - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "A táboa %s chámase agora %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Parece ser que a táboa está baleira!" @@ -7689,38 +7719,6 @@ msgstr "Definición da PARTICIÓN" msgid "+ Add a value" msgstr "Engadir un servidor novo" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Non hai un camiño válido de imaxe para o tema %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Non se dispón de previsualización." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "cólleo" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Non se atopou o tema por omisión %s!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Non se atopou o tema %s!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Non se atopou o camiño do tema para o tema %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8117,8 +8115,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %" -"sdocumentation%s." +"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na " +"%sdocumentation%s." #: navigation.php:213 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8868,8 +8866,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " "de privilexios do MySQL. O contido destas táboas pode diferir dos " @@ -10524,9 +10522,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/he.po b/po/he.po index a1ee7289d619..73ccc612ee87 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -42,13 +42,13 @@ msgstr "עדכון חלון הדפדפן הנבחר נכשל." msgid "Search" msgstr "חיפוש" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -61,18 +61,18 @@ msgstr "חיפוש" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "סע" @@ -117,7 +117,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "מסד הנתונים %s נמחק." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "הערה על מאגר הנתונים: " @@ -127,9 +127,9 @@ msgstr "הערה על מאגר הנתונים: " msgid "Table comments" msgstr "הערות טבלה" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -140,12 +140,12 @@ msgstr "הערות טבלה" msgid "Column" msgstr "שמות עמודה" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -155,9 +155,9 @@ msgstr "שמות עמודה" msgid "Type" msgstr "סוג" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -195,13 +195,12 @@ msgstr "קישורים אל" msgid "Comments" msgstr "הערות" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -212,17 +211,17 @@ msgstr "הערות" msgid "No" msgstr "לא" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -259,82 +258,82 @@ msgstr "בטל בחירת הכל" msgid "The database name is empty!" msgstr "שם מאגר הנתונים ריק!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "מאגר נתונים %s שונה אל %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "מאגר נתונים %s הועתק אל %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "פקודה" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "מסד הנתונים %s נמחק." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "אין מאגרי נתונים" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "העתקת מאגר נתונים אל" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "מבנה בלבד" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "מבנה ומידע" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "מידע בלבד" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "הוספת הגבלות" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "מעבר למאגר נתונים שהועתק" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "מעבר למאגר נתונים שהועתק" msgid "Collation" msgstr "קידוד" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,7 +353,7 @@ msgid "" msgstr "" "תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" @@ -507,102 +506,102 @@ msgstr "" msgid "Submit Query" msgstr "שליחת שאילתה" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "שאילתת SQL שלך בוצעה בהצלחה" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "מאפשר יצירת שגרות מאוחסנות." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL אמר: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "תהליכים" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "לא נמצאו טבלאות במאגר נתונים." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "טבלה %s נמחקה" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "טבלה %s נמחקה" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "גרסת שרת" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "אין מאגרי נתונים" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " "separated by commas and not enclosed in quotations." msgstr "" @@ -6151,41 +6328,6 @@ msgstr "שמות עמודה" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "אין מאגרי נתונים" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6210,40 +6352,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "אין אינדקסים מוגדרים!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "ייחודי" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "מספור" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "המפתח הראשי הוסר" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "אינדקס %s הוסר" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6256,29 +6364,6 @@ msgstr "ללא" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "לא נבחרו שורות" -msgstr[1] "לא נבחרו שורות" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "לא נבחרו שורות" -msgstr[1] "לא נבחרו שורות" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6523,19 +6608,6 @@ msgstr "" msgid "This format has no options" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "אין טבלאות" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "לא בסדר" @@ -6924,57 +6996,6 @@ msgstr "" msgid "Target database" msgstr "חפש במסד הנתונים" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "התחלת חיתוך" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "התחלת RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -7034,53 +7055,62 @@ msgstr "מיקום של קובץ טקסט" msgid "web server upload directory" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "אין מידע מצב מפורט על מנוע אחסון זה." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s זמין על שרת MySQL זה." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "התחלת חיתוך" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s מובטל על שרת MySQL זה." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "שרת MySQL לא תומך במנוע אחסון %s." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "התחלת RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" + +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "טבלה %s שונתה אל %s" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -7211,38 +7241,6 @@ msgstr "" msgid "+ Add a value" msgstr "הוספת משתמש חדש" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "קח זאת" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8266,8 +8264,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " diff --git a/po/hi.po b/po/hi.po index 36df25772942..bcb38d95cd16 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "खोजें" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "खोजें" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "आगे" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " @@ -131,9 +131,9 @@ msgstr "डाटाबेस टिप्पणि: " msgid "Table comments" msgstr " टेबल टिप्पणि:" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr " टेबल टिप्पणि:" msgid "Column" msgstr "कोलम" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "कोलम" msgid "Type" msgstr "टाइप" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "के लिए लिंक" msgid "Comments" msgstr "टिप्पणी" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "टिप्पणी" msgid "No" msgstr "नहीं" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -261,79 +260,79 @@ msgstr "सभी को रद्द करें" msgid "The database name is empty!" msgstr "डेटाबेस नाम खाली है" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr " डेटाबेस का नाम %s बदल कर %s रखा गया है" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr " डेटाबेस %s से %s में कॉपी किया गया है" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "आदेश" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "डेटाबेस को हटा दे" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "डाटाबेस %s को ड्रोप कर दिया ।" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "ड्रॉप डेटाबेस (छोड़ें)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "केवल संरचना" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "संरचना और डाटा" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "केवल डाटा" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "शर्तें जोडें" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "नक़ल किये गए डाटाबेस पर जायें" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -342,16 +341,16 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय msgid "Collation" msgstr "क्रम में करें" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %" -"shere%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " +"%shere%s पर क्लिक करें." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें " @@ -497,110 +496,110 @@ msgstr "डेटाबेस %s पर SQL क्वरी:" msgid "Submit Query" msgstr "क्वरी प्रस्तुत करें" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है." -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "निम्नलिखित क्वरीों क्रियान्वित किया गया है" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL ने कहा: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "याचिका प्रसंस्करणमें त्रुटि" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "डाटाबेस में कोई टेबल नहीं।" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "निर्यात डिफ़ॉल्ट" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "अवैध सर्वर सूचकांक: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr " टेबल %s को रद्द किया गया है." -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s टेबल बना दिया गया है" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "संबंध बनायें" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "संपादन मोड" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" +"The following structures have either been created or altered. Here you can:" +msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." -msgstr "" +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें" -#: libraries/import/csv.php:42 -#, fuzzy -#| msgid "Column names" -msgid "Column names: " -msgstr "कोलम नाम" +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "डेटाबेस पर जायें" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "सेटिंग्स" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "टेबल पर जायें" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "दृश्य पर जायें" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +#, fuzzy +#| msgid "Column names" +msgid "Column names: " +msgstr "कोलम नाम" #: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 @@ -5989,40 +6168,6 @@ msgstr "कोलम के नाम" msgid "This plugin does not support compressed imports!" msgstr "यह प्लगइन संकुचित आयात का समर्थन नहीं करता" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "डेटाबेस पर जायें" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "सेटिंग्स" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "टेबल पर जायें" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "दृश्य पर जायें" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "प्रतिशत को उचित दशमलव के रूप में आयात करें" @@ -6045,40 +6190,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "परिभाषित सूचकांक नहीं पाए गए!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "अद्वितीय" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "जमा" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "प्रमुखता" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "प्राथमिक कुंजी गिरा दी गयी है" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "सूचकांक %s गिरा दिया गया है" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "No" @@ -6091,27 +6202,6 @@ msgstr "कोई एन्कोडिंग नहीं" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "एकवचन %1$d रोव प्रभावित" -msgstr[1] "बहुवचन%1$d रोवस प्रभावित" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "एकवचन%1$d रोव नष्ट" -msgstr[1] "बहुवचन%1$d रोवस नष्ट" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "एकवचन%1$d रोव डाला" -msgstr[1] "बहुवचन%1$d रोवस डाला" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6354,24 +6444,6 @@ msgstr "नेविगेशन फ्रेम पुनः लोड" msgid "This format has no options" msgstr "इस प्रारूप के कोई विकल्प नहीं है" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not save configuration" -msgid "Could not save recent table" -msgstr "विन्यास सहेज नहीं सकते" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "टेबल गणना" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "कोई कॉन्फ़िगर सर्वर मौजूद नहीं है" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "ठीक नहीं है" @@ -6758,57 +6830,6 @@ msgstr "अंतर" msgid "Target database" msgstr "लक्ष्य डेटाबेस" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN कट" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN रॉ" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "अवैध पहचानकर्ता" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "अज्ञात विराम स्ट्रिंग" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6866,53 +6887,62 @@ msgstr "पाठ फ़ाइल का स्थान" msgid "web server upload directory" msgstr "वेब सर्वर अपलोड निर्देशिका" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "इस भंडारण इंजन स्थिति के लिए कोई विस्तृत जानकारी उपलब्ध नहीं है." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s इस MySQL सर्वर पर उपलब्ध है." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN कट" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s इस MySQL सर्वर के लिए निष्क्रिय कर दिया गया है." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN रॉ" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "अमान्य डेटाबेस" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "अवैध टेबल नाम" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि." +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "टेबल %s का नाम बदल कर %s रखा गया है." +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "अवैध पहचानकर्ता" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "अज्ञात विराम स्ट्रिंग" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -7026,38 +7056,6 @@ msgstr "" msgid "+ Add a value" msgstr "नयी वलुए जोडें" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "पूर्वावलोकन उपलब्ध नहीं." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "इसे ले लो" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "डिफ़ॉल्ट विषयवस्तु %s नहीं मिला है!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "विषयवस्तु %s नहीं मिला है!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "विषय %s के लिए थीम पथ नहीं मिला है!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8059,8 +8057,8 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/hr.po b/po/hr.po index c97986b616a7..bc2561bf5987 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Traži" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Traži" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Kreni" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza podataka %1$s uspješno je izrađena." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Komentar baze podataka: " @@ -133,9 +133,9 @@ msgstr "Komentar baze podataka: " msgid "Table comments" msgstr "Komentari tablice" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -146,12 +146,12 @@ msgstr "Komentari tablice" msgid "Column" msgstr "Nazivi stupaca" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -161,9 +161,9 @@ msgstr "Nazivi stupaca" msgid "Type" msgstr "Vrsta" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -201,13 +201,12 @@ msgstr "Povezano s" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -218,17 +217,17 @@ msgstr "Komentari" msgid "No" msgstr "Ne" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -265,82 +264,82 @@ msgstr "Ukloni sav odabir" msgid "The database name is empty!" msgstr "Naziv baze podataka je prazan!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza podataka %s preimenovana je u %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza podataka %s kopirana je u %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Naredba" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Baza podataka %s je odbačena." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nema baza podataka" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopiraj bazu podataka u" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Samo strukturu" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Strukturu i podatke" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Samo podatke" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Dodaj prisile" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu podataka" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -349,7 +348,7 @@ msgstr "Prebaci se na kopiranu bazu podataka" msgid "Collation" msgstr "Uspoređivanje" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -361,7 +360,7 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -514,14 +513,14 @@ msgstr "SQL upit nad bazom podataka %s:" msgid "Submit Query" msgstr "Podnesi upit" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit uspješno je izvršen" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -529,93 +528,93 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dopušta pokretanje pohranjenih rutina." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL je poručio: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "U bazi podataka nisu pronađene tablice." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "Uvezi datoteke" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tablica %s je odbačen" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Izradi relaciju" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy msgid "Edit routine" msgstr "Web poslužitelj" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " "unchecked, the first line will become part of the data)" @@ -6320,42 +6503,6 @@ msgstr "Nazivi stupaca" msgid "This plugin does not support compressed imports!" msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Nema baza podataka" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "Nema baza podataka" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6380,41 +6527,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Nema definiranog indeksa!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Jedinstveno" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Pakirano" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Najvažnije" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primarni ključ je odbačen" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Index %s je odbačen" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6427,30 +6539,6 @@ msgstr "bez kompresije" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, fuzzy, php-format -#| msgid "%1$d row(s) affected." -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Zahvaćeno redaka: %1$d." -msgstr[1] "Zahvaćeno redaka: %1$d." - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "%1$d row(s) deleted." -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Izbrisano redaka: %1$d." -msgstr[1] "Izbrisano redaka: %1$d." - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "%1$d row(s) inserted." -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Umetnuto redaka: %1$d." -msgstr[1] "Umetnuto redaka: %1$d." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6693,22 +6781,6 @@ msgstr "" msgid "This format has no options" msgstr "Ovaj oblik nema raspoložive opcije" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Nema tablica" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -msgid "There are no recent tables" -msgstr "Provjeri tablicu" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "nije OK" @@ -7102,68 +7174,6 @@ msgstr "" msgid "Target database" msgstr "Traži u bazi podataka" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Izgleda da postoji pogreška u vašem SQL upitu. Ispis pogreške MySQL " -"poslužitelja može vam pomoći u dijagnosticiranju problema." - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Postoji mogućnost da ste pronašli nedostatak u SQL raščlanjivaču. Temeljito " -"proučite vaš upit i provjerite ispravan unos navodnika. Jedan od mogućih " -"razloga je i da ste učitali datoteku s binarnim vrijednosti izvan prostora s " -"navodnicima. Vaš upit također možete provjeriti u naredbenom retku MySQL-a. " -"Ispis pogreške MySQL poslužitelja može vam pomoći u dijagnosticiranju " -"problema. Ako i dalje postoje problemi ili ako raščlanjivač ne uspijeva u " -"zadacima koji uspijevaju u naredbenom retku, suzite svoj unos SQL upita na " -"samo onaj upit koji izaziva probleme i podnesite prijavu o nedostatku " -"zajedno s dijelom podatka u donjem odjeljku CUT:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Navodnik nije zatvoren" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Neispravna ID oznaka" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Nepoznat niz interpunkcija" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7222,56 +7232,76 @@ msgstr "Lokacija tekstualne datoteke" msgid "web server upload directory" msgstr "mapa učitavanja web poslužitelja" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali " -"potrebna PHP proširenja, na način opisan u %sdokumentaciji%s." +"Izgleda da postoji pogreška u vašem SQL upitu. Ispis pogreške MySQL " +"poslužitelja može vam pomoći u dijagnosticiranju problema." -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Za ovaj pogon pohranjivanje ne postoje raspoloživi podaci." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"Postoji mogućnost da ste pronašli nedostatak u SQL raščlanjivaču. Temeljito " +"proučite vaš upit i provjerite ispravan unos navodnika. Jedan od mogućih " +"razloga je i da ste učitali datoteku s binarnim vrijednosti izvan prostora s " +"navodnicima. Vaš upit također možete provjeriti u naredbenom retku MySQL-a. " +"Ispis pogreške MySQL poslužitelja može vam pomoći u dijagnosticiranju " +"problema. Ako i dalje postoje problemi ili ako raščlanjivač ne uspijeva u " +"zadacima koji uspijevaju u naredbenom retku, suzite svoj unos SQL upita na " +"samo onaj upit koji izaziva probleme i podnesite prijavu o nedostatku " +"zajedno s dijelom podatka u donjem odjeljku CUT:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s je raspoloživ na ovom MySQL poslužitelju." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s je onemogućen za ovaj MySQL poslužitelj." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Neispravna baza podataka" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Neispravan naziv tablice" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Navodnik nije zatvoren" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tablica %s preimenovana je u %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Neispravna ID oznaka" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Nepoznat niz interpunkcija" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali " +"potrebna PHP proširenja, na način opisan u %sdokumentaciji%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7403,38 +7433,6 @@ msgstr "Definicija PARTICIJE" msgid "+ Add a value" msgstr "Dodaj novog korisnika" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Valjana putanja slika za temu %s nije pronađena!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Nema raspoloživog pregleda." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "Dodijeli" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Zadana tema %s nije pronađena!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s nije pronađena!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Za temu %s nije pronađena putanje tema!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8562,8 +8560,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " "tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " @@ -11133,8 +11131,8 @@ msgstr "Preimenuj prikaz u" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1" -#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju." +#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]" +#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju." #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " diff --git a/po/hu.po b/po/hu.po index 55eb9a3ae07f..1178ed647290 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Keresés" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Keresés" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Indítás" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "A(z) %1$s adatbázis elkészült." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " @@ -132,9 +132,9 @@ msgstr "Megjegyzés az adatbázishoz: " msgid "Table comments" msgstr "Tábla megjegyzése" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Tábla megjegyzése" msgid "Column" msgstr "Oszlop" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Oszlop" msgid "Type" msgstr "Típus" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Hivatkozások:" msgid "Comments" msgstr "Megjegyzések" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Megjegyzések" msgid "No" msgstr "Nem" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Mind törlése" msgid "The database name is empty!" msgstr "Üres az adatbázis neve!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "A(z) %s adatbázis átnevezése %s névre megtörtént" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Parancs" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Adatbázis eltávolítása" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "A(z) %s adatbázis eldobása megtörtént." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Adatbázis eldobása (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Adatbázis másolása" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Csak a szerkezet" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Szerkezet és adatok" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Csak az adatok" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Megszorítás hozzáadása" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "A másolt adatbázisra váltás" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "A másolt adatbázisra váltás" msgid "Collation" msgstr "Illesztés" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "A phpMyAdmin konfigurációs tárolója deaktiválva lett. Ha szeretné megtudni, " "hogy miért, kattintson %side%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Kapcsolati séma szerkesztése, exportálása" @@ -498,109 +497,109 @@ msgstr "SQL-lekérdezés a(z) %s adatbázison:" msgid "Submit Query" msgstr "Lekérdezés indítása" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Az SQL-lekérdezés végrehajtása sikerült" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Engedélyezi a tárolt eljárások végrehajtását." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "A MySQL mondta: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Hiba a kérés feldolgozásában" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Nem található tábla az adatbázisban." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Exportálás alapértelmezései" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Érvénytelen szerverindex: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "A(z) %s oszlop eldobása megtörtént" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "A(z) %1$s tábla elkészült." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Kapcsolat létrehozása" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Szerkesztő mód" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import/csv.php:42 -#, fuzzy -#| msgid "Column names" -msgid "Column names: " -msgstr "Oszlopnevek" +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Nincs adatbázis" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +#, fuzzy +#| msgid "Column names" +msgid "Column names: " +msgstr "Oszlopnevek" #: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 @@ -6249,41 +6432,6 @@ msgstr "Oszlopnevek" msgid "This plugin does not support compressed imports!" msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Nincs adatbázis" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6310,42 +6458,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Nincs meghatározott index!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Egyedi" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Csomagolt" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Számosság" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Az elsődleges kulcs eldobása megtörtént" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "A(z) %s index eldobása megtörtént" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg " -"eltávolítható." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6358,27 +6470,6 @@ msgstr "Nincs" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d sor érintett." -msgstr[1] "%1$d sor érintett." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "A(z) %1$d sor törlése megtörtént." -msgstr[1] "A(z) %1$d sor törlése megtörtént." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "A(z) %1$d sor beszúrása megtörtént." -msgstr[1] "A(z) %1$d sor beszúrása megtörtént." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6622,24 +6713,6 @@ msgstr "A navigációs keret testreszabása" msgid "This format has no options" msgstr "Ennek a formátumnak nincsenek beállításai" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Cannot load or save configuration" -msgid "Could not save recent table" -msgstr "A beállítások nem tölthetők be vagy menthetők" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Táblák megszámolása" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Nincsenek konfigurált szerverek" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Nincs rendben" @@ -7036,70 +7109,6 @@ msgstr "" msgid "Target database" msgstr "Keresés az adatbázisban" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Úgy látszik, hogy hiba van az SQL lekérdezésben. A MySQL szerver " -"hibakimenete alul látható, ha van ott valami, az segíthet kideríteni a hiba " -"okát" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Esély van rá, hogy hibát találhatott az SQL szintaktikai elemzőben (parser). " -"Kérjük, hogy vizsgálja meg gondosan a lekérdezésedet, ellenőrizze, hogy az " -"idézőjelek jók-e és jól illeszkednek-e. Más lehetséges hiba oka lehet, hogy " -"binárisan töltött fel egy fájlt az idézett szövegmezőn kívül. Kipróbálhatja " -"a lekérdezésedet a MySQL parancssoros kezelőfelületén. A MySQL szerver " -"hibakimenete alul látható, ha van ott valami, az segíthet a hiba okának " -"kiderítésében. Ha még mindig gondjai vannak, vagy a szintaktikai elemző " -"(parser) hibát jelez, ahol a parancssoros kezelőfelületen végrehajtódik, " -"redukálja a problémát okozó SQL lekérdezést egy egyszerű lekérdezéssé, és " -"küldjön be hibabejelentést az alsó Kivágás részben levő adatokkal együtt:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "Kivágás kezdete" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "Kivágás vége" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "Feldolgozatlan kezdete" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "Feldolgozatlan Vége" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Lezáratlan idézőjel" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Érvénytelen azonosító" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Ismeretlen írásjeleket tartalmazó karakterlánc" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7159,58 +7168,79 @@ msgstr "A szövegfájl helye" msgid "web server upload directory" msgstr "webszerver feltöltési könyvtár" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %" -"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" -"kiterjesztést." +"Úgy látszik, hogy hiba van az SQL lekérdezésben. A MySQL szerver " +"hibakimenete alul látható, ha van ott valami, az segíthet kideríteni a hiba " +"okát" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -"Erről a tárolómotorról részletes állapot-információ nem áll rendelkezésre." +"Esély van rá, hogy hibát találhatott az SQL szintaktikai elemzőben (parser). " +"Kérjük, hogy vizsgálja meg gondosan a lekérdezésedet, ellenőrizze, hogy az " +"idézőjelek jók-e és jól illeszkednek-e. Más lehetséges hiba oka lehet, hogy " +"binárisan töltött fel egy fájlt az idézett szövegmezőn kívül. Kipróbálhatja " +"a lekérdezésedet a MySQL parancssoros kezelőfelületén. A MySQL szerver " +"hibakimenete alul látható, ha van ott valami, az segíthet a hiba okának " +"kiderítésében. Ha még mindig gondjai vannak, vagy a szintaktikai elemző " +"(parser) hibát jelez, ahol a parancssoros kezelőfelületen végrehajtódik, " +"redukálja a problémát okozó SQL lekérdezést egy egyszerű lekérdezéssé, és " +"küldjön be hibabejelentést az alsó Kivágás részben levő adatokkal együtt:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "A(z) %s motor elérhető ezen a MySQL szerveren." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "Kivágás kezdete" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s letiltott ezen a MySQL szerveren." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "Kivágás vége" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Ez a MySQL szerver nem támogatja a(z) %s tárolómotort." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "Feldolgozatlan kezdete" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Érvénytelen adatbázis" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "Feldolgozatlan Vége" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Érvénytelen táblanév" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Lezáratlan idézőjel" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "A(z) %s tábla átnevezése %s névre megtörtént" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Érvénytelen azonosító" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Ismeretlen írásjeleket tartalmazó karakterlánc" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a " +"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" +"kiterjesztést." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7343,38 +7373,6 @@ msgstr "PARTITION definíció" msgid "+ Add a value" msgstr "Új szerver hozzáadása" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Nincs érvényes kép elérési útja a(z) %s témának!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Nincs előnézet." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "csináld" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "A(z) %s alapértelmezett téma nem található!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Nem található a(z) %s téma!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Nem található a(z) %s téma téma elérési útja!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8532,13 +8530,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " "privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " -"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" -"stöltse be újra a jogokat%s a folytatás előtt." +"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " +"%stöltse be újra a jogokat%s a folytatás előtt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10144,9 +10142,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/id.po b/po/id.po index bf9e246e6264..1a3510f016e7 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-18 11:34+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Cari" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Cari" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Go" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Database %1$s telah dibuat." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Komentar Database: " @@ -132,9 +132,9 @@ msgstr "Komentar Database: " msgid "Table comments" msgstr "Komentar tabel" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Komentar tabel" msgid "Column" msgstr "Kolom" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Kolom" msgid "Type" msgstr "Jenis" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Link ke" msgid "Comments" msgstr "Komentar" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Komentar" msgid "No" msgstr "Tidak" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Unselect semua" msgid "The database name is empty!" msgstr "Nama database kosong!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Nama database %s telah diubah menjadi %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s telah disalin ke %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Ubah nama database menjadi" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Perintah" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Hapus database" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Database %s telah dihapus." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Buang database (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Salin database ke" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Struktur saja" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Data saja" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CIPTAKAN DATABASE sebelum menyalin" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Menambahkan nilai AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Menambahkan pembatas" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Pindah ke database yang disalin" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Pindah ke database yang disalin" msgid "Collation" msgstr "Penyortiran" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "Penyimpanan konfigurasi phpMyAdmin telah dinonaktifkan. Untuk mencari tahu " "mengapa klik %sdisini%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Edit atau ekspor skema relasional" @@ -497,105 +496,105 @@ msgstr "Pencarian SQL dalam database %s:" msgid "Submit Query" msgstr "Jalankan Pencarian SQL" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Query SQL Anda berhasil dieksekusi" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Mengizinkan eksekusi Routines yang tersimpan." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL balikkan hasil kosong (a.k. baris yang kosong)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Error dalam memproses permintaan" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Tidak ada tabel dalam database." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export contents" msgid "Export of routine %s" msgstr "Ekspor isi" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Indeks server tidak sah: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabel %s telah dihapus" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabel %s telah dihapus" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Buat relasi" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import/csv.php:42 -#, fuzzy -#| msgid "Column names" -msgid "Column names: " -msgstr "Nama kolom" +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Database tidak ditemukan" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +#, fuzzy +#| msgid "Column names" +msgid "Column names: " +msgstr "Nama kolom" #: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 @@ -6102,41 +6282,6 @@ msgstr "Nama kolom" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Database tidak ditemukan" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6165,42 +6310,6 @@ msgstr "" "File XML yang ditentukan cacat atau tidak lengkap. Mohon perbaiki dan coba " "lagi." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Indeks belum ditentukan!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unik" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Dipadatkan" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Bilangan Pokok" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Kunci utama telah dihapus" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeks %s telah dihapus" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Index %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan " -"untuk dibuang." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6213,30 +6322,6 @@ msgstr "tanpa" msgid "Convert to Kana" msgstr "" -# No difference between singular and plural in this case for Indonesian -# language. -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d baris terpengaruh." - -# No difference between singular and plural in this case for Indonesian -# language. -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d baris telah dihapus." - -# No difference between singular and plural in this case for Indonesian -# language. -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d baris disisipkan." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6479,18 +6564,6 @@ msgstr "" msgid "This format has no options" msgstr "Format ini tidak ada pilihannya" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Tidak dapat menyimpan tabel terakhir: \"%1$s\"" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Tabel terakhir" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Tidak ada tabel terakhir" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "tidak oke" @@ -6880,6 +6953,64 @@ msgstr "Perbedaan" msgid "Target database" msgstr "Database target" +#: libraries/sql_query_form.lib.php:223 +#, fuzzy, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Melaksanakan perintah SQL pada database %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Melaksanakan perintah SQL pada database %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +#, fuzzy +msgid "Clear" +msgstr "Kalender" + +#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Column names" +msgid "Columns" +msgstr "Nama kolom" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Simpan pencarian SQL ini" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Izinkan semua pengguna untuk mengakses simpanan ini" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Jangan timpahkan pencarian ini dari jendela luar" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Pembatas" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Tampilkan ulang perintah SQL " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Hanya melihat" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "dari File" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "direktori upload pada web-server" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6945,64 +7076,6 @@ msgstr "Identifer tidak valid" msgid "Unknown Punctuation String" msgstr "Punctation String tidak dikenali" -#: libraries/sql_query_form.lib.php:223 -#, fuzzy, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Melaksanakan perintah SQL pada database %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Melaksanakan perintah SQL pada database %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -#, fuzzy -msgid "Clear" -msgstr "Kalender" - -#: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" -msgid "Columns" -msgstr "Nama kolom" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Simpan pencarian SQL ini" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Izinkan semua pengguna untuk mengakses simpanan ini" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Jangan timpahkan pencarian ini dari jendela luar" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Pembatas" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Tampilkan ulang perintah SQL " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Hanya melihat" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "dari File" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "direktori upload pada web-server" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7012,49 +7085,6 @@ msgstr "" "Pengesahan SQL tidak dapat disahkan. Mohon periksa kembali ekstension PHP " "yang diperlukan seperti yang tercatat dalam %sdokumentasi%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Informasi secara rinci tentang keadaan mesin penyimpan ini tidak ditemukan." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s siap untuk digunakan pada server MySQL ini." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s dimatikan untuk server MySQL ini." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Server MySQL ini tidak mendukung mesin penyimpan %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Basisdata tidak valid" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Nama tabel tidak valid" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Kesalahan mengganti nama table %1$s ke %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Nama tabel %s telah diubah menjadi %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Tidak dapat menyimpan preferensi UI tabel" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "" @@ -7185,38 +7215,6 @@ msgstr "" msgid "+ Add a value" msgstr "Menambahkan pengguna baru" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Tidak ada preview yang tersedia." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "ambil ini" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Tema %s bawaan tidak ditemukan!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s tidak ditemukan!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "Tema" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8331,8 +8329,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " "tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " diff --git a/po/it.po b/po/it.po index 5e492496903c..6f1eef1e6def 100644 --- a/po/it.po +++ b/po/it.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-23 11:55+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Cerca" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Esegui" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Commento del database: " @@ -133,9 +133,9 @@ msgstr "Commento del database: " msgid "Table comments" msgstr "Commenti alla tabella" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "Commenti alla tabella" msgid "Column" msgstr "Campo" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "Campo" msgid "Type" msgstr "Tipo" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Collegamenti a" msgid "Comments" msgstr "Commenti" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "Commenti" msgid "No" msgstr "No" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,79 +262,79 @@ msgstr "Deseleziona tutto" msgid "The database name is empty!" msgstr "Il nome del database è vuoto!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Il database %s è stato rinominato a %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Il database %s è stato copiato a %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Rinomina il database a" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Comando" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Rimuovi il database" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Il database %s è stato eliminato." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Cancella il database (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copia il database a" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Solo struttura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struttura e dati" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Solo dati" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Aggiungi vincoli" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Passa al database copiato" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,7 +343,7 @@ msgstr "Passa al database copiato" msgid "Collation" msgstr "Collation" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -353,7 +352,7 @@ msgstr "" "Le opzioni di configurazione dello storage di phpMyAdmin sono state " "disabilitate. Per scoprire la ragione, clicca %squi%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Modifica o esporta schema relazionale" @@ -499,110 +498,110 @@ msgstr "SQL-query sul database %s:" msgid "Submit Query" msgstr "Invia Query" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "La query SQL è stata eseguita con successo" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Permette l'esecuzione di routines memorizzate." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Le seguenti query sono state eseguite:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Errore nel processare la richiesta" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Non ci sono tabelle nel database" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Esporta i predefiniti" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Indice server non valido: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Il campo %s è stato eliminato" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "La tabella %1$s è stata creata." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Crea relazioni" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Modalitá di modifica" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" -"La prima linea del file contiene i nomi dei campi della tabella (se " -"quest'opzione non é attivata, la prima linea diventerá parte dei dati)" +"The following structures have either been created or altered. Here you can:" +msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Visualizza i contenuti delle strutture facendo click sul loro nome" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -"Se i dati in ogni riga non é nello stesso ordine come nel database, " -"specifica i campi corrspondenti qui. I nomi dei campi devono essere separati " -"da virgole e non racchiusi in virgolette." - -#: libraries/import/csv.php:42 -msgid "Column names: " -msgstr "Nomi dei campi: " +"Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\"" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Modifica la sua struttura seguendo il link \"Struttura\"" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Vai al database" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "impostazioni" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Vai alla tabella" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Vai alla visualizzazione" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"La prima linea del file contiene i nomi dei campi della tabella (se " +"quest'opzione non é attivata, la prima linea diventerá parte dei dati)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" +"Se i dati in ogni riga non é nello stesso ordine come nel database, " +"specifica i campi corrspondenti qui. I nomi dei campi devono essere separati " +"da virgole e non racchiusi in virgolette." + +#: libraries/import/csv.php:42 +msgid "Column names: " +msgstr "Nomi dei campi: " #: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 @@ -6265,41 +6448,6 @@ msgstr "Nomi delle colonne" msgid "This plugin does not support compressed imports!" msgstr "Questo plugin non supporta importazioni di dati compressi!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Visualizza i contenuti delle strutture facendo click sul loro nome" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\"" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Modifica la sua struttura seguendo il link \"Struttura\"" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Vai al database" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "impostazioni" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Vai alla tabella" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Vai alla visualizzazione" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6325,42 +6473,6 @@ msgstr "" "Il file XML specificato era malformato o incompleto. Correggi questo " "problema e prova ancora." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Nessun indice definito!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unica" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Compresso" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinalità" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "La chiave primaria è stata eliminata" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "L'indice %s è stato eliminato" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, " -"possibilmente, essere rimosso." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6371,27 +6483,6 @@ msgstr "Nessuno" msgid "Convert to Kana" msgstr "Converti a Kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d riga modificata." -msgstr[1] "%1$d righe modificate." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d riga cancellata." -msgstr[1] "%1$d righe cancellate." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d riga inserita." -msgstr[1] "%1$d righe inserite." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "Da" @@ -6630,22 +6721,6 @@ msgstr "Ricarica la frame di navigazione" msgid "This format has no options" msgstr "Questo formato non ha opzioni" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not save configuration" -msgid "Could not save recent table" -msgstr "Impossibile salvare la configurazione" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Conta tabelle" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Non ci sono server configurati" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "non OK" @@ -7030,6 +7105,61 @@ msgstr "Differenza" msgid "Target database" msgstr "Database di destinazione" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Eseguendo query SQL sul server %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Esegui la/e query SQL sul database %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Cancella" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Campi" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Aggiungi ai preferiti questa query SQL" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Permetti ad ogni utente di accedere a questo bookmark" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Sostituisci segnalibro esistente se con lo stesso nome" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Non sovrascrivere questa query da fuori della finestra" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Delimitatori" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Mostra di nuovo questa query " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Visualizza solo" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Percorso del file" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "directory di upload del web-server" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7094,61 +7224,6 @@ msgstr "Identificatore Non Valido" msgid "Unknown Punctuation String" msgstr "Stringa di Punctuation Sconosciuta" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Eseguendo query SQL sul server %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Esegui la/e query SQL sul database %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Cancella" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Campi" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Aggiungi ai preferiti questa query SQL" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Permetti ad ogni utente di accedere a questo bookmark" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Sostituisci segnalibro esistente se con lo stesso nome" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Non sovrascrivere questa query da fuori della finestra" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Delimitatori" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Mostra di nuovo questa query " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Visualizza solo" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Percorso del file" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "directory di upload del web-server" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7159,50 +7234,6 @@ msgstr "" "installato le estensioni php necessarie come descritto nella %sdocumentazione" "%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Non è disponibile nessuna informazione dettagliata sullo stato di questo " -"motore di memorizzazione." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s è disponibile su questo server MySQL." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s è stato disabilitato su questo server MySQL." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Questo server MySQL non supporta il motore di memorizzazione %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Database non valido" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Nome tabella non valido" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Errore nel rinominare la tabella %1$s in %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "La tabella %s è stata rinominata %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "La tabella sembra essere vuota!" @@ -7323,39 +7354,6 @@ msgstr "Definizione PARTITION" msgid "+ Add a value" msgstr "+ Aggiungi un nuovo valore" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" -"Non è stato trovato nessun percorso per l'immagine valido per il tema %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Nessuna anteprima disponibile." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "prendilo" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Tema di default %s non trovato!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s non trovato!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Percorso per il tema non trovato %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "Tema" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7702,8 +7700,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sul server è in esecuzione Suhosin. Controlla la documentazione: %" -"sdocumentation%s per possibili problemi." +"Sul server è in esecuzione Suhosin. Controlla la documentazione: " +"%sdocumentation%s per possibili problemi." #: navigation.php:213 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8411,8 +8409,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " "dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " @@ -10009,10 +10007,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %" -"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. " -"Comunque, la protezione a base di IP potrebbe non essere affidabile se il " -"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " +"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - " +"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia" +"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se " +"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " "connessi." #: setup/lib/index.lib.php:268 @@ -10027,8 +10025,8 @@ msgstr "" "Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il " "nome utente e la parola chiave per l'auto-login, questo non è desiderato per " "gli host in uso live. Chiunque che conosce o indovina il tuo URL di " -"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %" -"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta " +"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/ja.po b/po/ja.po index c94e754cafe4..06b720402d6c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-23 12:13+0200\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-27 12:34+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "検索" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "検索" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "実行する" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "データベース %1$s を作成しました。" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "データベースのコメント" @@ -132,9 +132,9 @@ msgstr "データベースのコメント" msgid "Table comments" msgstr "テーブルのコメント" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "テーブルのコメント" msgid "Column" msgstr "カラム" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "カラム" msgid "Type" msgstr "種別" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "リンク先" msgid "Comments" msgstr "コメント" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "コメント" msgid "No" msgstr "いいえ" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "全選択解除" msgid "The database name is empty!" msgstr "データベース名が空です!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "データベース %s を %s にリネームしました" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "データベース %s を %s にコピーしました" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "新しいデータベース名" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "コマンド" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "データベースの削除" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "データベース %s を削除しました" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "データベースを削除する (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "データベースのコピー先" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "構造のみ" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "構造とデータ" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "データのみ" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%s を追加" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "制約を追加する" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "コピーしたデータベースに切り替える" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "コピーしたデータベースに切り替える" msgid "Collation" msgstr "照合順序" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "phpMyAdmin の設定保存場所が無効になっています。理由については%sこちら%sをご覧" "ください。" -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "リレーショナルスキーマを編集またはエクスポートする" @@ -497,98 +496,98 @@ msgstr "データベース %s のSQL:" msgid "Submit Query" msgstr "クエリを実行する" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL は正常に実行されました" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "プロシージャ内の最後のステートメントは %d 行の変更を行いました" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "ルーチン %s の実行結果" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした(行数0)" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 -#, fuzzy, php-format +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 +#, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" -msgstr "次のクエリが実行されます:" +msgstr "クエリの実行に失敗しました:『%s』" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQLのメッセージ: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "要求処理中でのエラー" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 -#, fuzzy, php-format +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 +#, php-format #| msgid "No routine with name %s found in database %s" msgid "No routine with name %1$s found in database %2$s" msgstr "データベース %2$s に %1$s という名前のルーチンはありません" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "ルーチンを実行する" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "ルーチン %s のエクスポート" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "ルーチンタイプが不正です: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "ルーチン %1$s を変更しました。" -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "ルーチン %1$s を作成しました。" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "リクエストの処理中に 1 つ以上のエラーが発生しました:" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "ルーチンを作成する" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "ルーチンを編集する" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" msgstr "パーセントは適切な小数に変換する(例:12.00% を .12)" @@ -6148,42 +6280,6 @@ msgstr "" "指定された XML ファイルは、不完全もしくはフォーマットが正しくありません。問題" "を修正して再度試してみてください。" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "インデックスが定義されていません!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "ユニーク" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "圧縮" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "一意な値の数" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "主キーを削除しました" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "インデックス %s を削除しました" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" -"れません。" - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6194,24 +6290,6 @@ msgstr "なし" msgid "Convert to Kana" msgstr "全角カナへ変換する" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d 行変更しました。" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d 行削除しました。" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d 行挿入しました。" - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "付け替え元" @@ -6450,18 +6528,6 @@ msgstr "ナビゲーションフレームの再読み込み" msgid "This format has no options" msgstr "この書式にはオプションはありません" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "最近使用したテーブルが保存できません" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "最近使用したテーブル" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "最近使用したテーブルはありません" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Not OK" @@ -6841,6 +6907,61 @@ msgstr "差分" msgid "Target database" msgstr "対象先のデータベース" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "サーバ %s 上でクエリを実行する" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "データベース %s 上でクエリを実行する" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "クリア" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "カラム" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "この SQL をブックマークする" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "すべてのユーザがこのブックマークを利用できるようにする" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "同名のブックマークは差し替える" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "別ウインドウからのクエリの上書きを禁止する" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "デリミタ" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " 実行したクエリをここに表示する" + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "表示のみ" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "テキストファイルの位置" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "ウェブサーバ上のアップロードディレクトリ" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6903,61 +7024,6 @@ msgstr "不正な識別子です" msgid "Unknown Punctuation String" msgstr "無効な句読点文字です" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "サーバ %s 上でクエリを実行する" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "データベース %s 上でクエリを実行する" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "クリア" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "カラム" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "この SQL をブックマークする" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "すべてのユーザがこのブックマークを利用できるようにする" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "同名のブックマークは差し替える" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "別ウインドウからのクエリの上書きを禁止する" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "デリミタ" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " 実行したクエリをここに表示する" - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "表示のみ" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "テキストファイルの位置" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "ウェブサーバ上のアップロードディレクトリ" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -6967,48 +7033,6 @@ msgstr "" "SQL の検証機能を初期化できません。%sドキュメント%s の記載通りに必要な PHP 拡" "張がインストールされているか確認してください" -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "このストレージエンジンにはステータスの詳細情報はありません" - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s は有効になっています" - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s は無効になっています" - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません" - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "不正なデータベースです" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "テーブル名が不正です" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "テーブルを %1$s から %2$s にリネームするときにエラーが発生しました" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "テーブル %s を %s にリネームしました" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "テーブルにユーザ設定が保存できません" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "テーブルが空のようです!" @@ -7122,42 +7146,9 @@ msgid "PARTITION definition" msgstr "パーティションの定義" #: libraries/tbl_properties.inc.php:776 -#, fuzzy #| msgid "+ Add a new value" msgid "+ Add a value" -msgstr "+ 新しい値を追加する" - -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "テーマ %s の画像パスが無効です!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "プレビューは利用できません" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "これにする" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "デフォルトテーマ %s が見つかりません!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "テーマ %s が見つかりません!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "テーマ %s のテーマパスが見つかりません!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "テーマ" +msgstr "+ 値を追加する" #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" @@ -8196,8 +8187,8 @@ msgstr "ユーザと同名のデータベースを削除する" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" "作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" @@ -9448,7 +9439,7 @@ msgstr "" #: server_variables.php:58 msgid "Setting variable failed" -msgstr "" +msgstr "変数の設定に失敗しました" #: server_variables.php:77 msgid "Server variables and settings" @@ -9725,10 +9716,11 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%" -"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し" -"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続" -"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。" +"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定" +"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ" +"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい" +"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま" +"せん。" #: setup/lib/index.lib.php:268 #, php-format diff --git a/po/ka.po b/po/ka.po index a92211df9335..c26f62c3438c 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "ძებნა" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "ძებნა" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "გადასვლა" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "შეიქმნა მონაცემთა ბაზა %1$s." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "მონაცემთა ბაზის კომენტარი: " @@ -131,9 +131,9 @@ msgstr "მონაცემთა ბაზის კომენტარი: msgid "Table comments" msgstr "ცხრილის კომენტარები" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "ცხრილის კომენტარები" msgid "Column" msgstr "სვეტების სახელები" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "სვეტების სახელები" msgid "Type" msgstr "ტიპი" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Links to" msgid "Comments" msgstr "კომენტარები" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "კომენტარები" msgid "No" msgstr "არა" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,82 +262,82 @@ msgstr "მონიშნვის მოხსნა" msgid "The database name is empty!" msgstr "მონაცემთა ბაზა ცარიელია!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "ბრძანება" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Rename database to" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "მონაცემთა ბაზები არაა" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "მხოლოდ მონაცემები" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -347,7 +346,7 @@ msgstr "Switch to copied database" msgid "Collation" msgstr "კოლაცია" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -359,7 +358,7 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -512,109 +511,109 @@ msgstr "SQL query on database %s:" msgid "Submit Query" msgstr "მოთხოვნის გაგზავნა" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "პროცესები" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "No tables found in database." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export functions" msgid "Export of routine %s" msgstr "Export defaults" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Invalid server index: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Table %s has been dropped" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Table %1$s has been created." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Create relation" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "რედაქტირების რეჟიმი" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "მონაცემთა ბაზები არაა" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +#, fuzzy +msgid "Go to table" +msgstr "მონაცემთა ბაზები არაა" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" "If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " "separated by commas and not enclosed in quotations." @@ -6508,42 +6695,6 @@ msgstr "სვეტების სახელები" msgid "This plugin does not support compressed imports!" msgstr "This plugin does not support compressed imports!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "მონაცემთა ბაზები არაა" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "მონაცემთა ბაზები არაა" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6568,42 +6719,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "ინდექსი არაა განსაზღვრული!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "უნიკალური" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "შეკუმშული" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinality" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "The primary key has been dropped" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Index %s has been dropped" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6616,30 +6731,6 @@ msgstr "არაა" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, fuzzy, php-format -#| msgid "%1$d row(s) affected." -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d row(s) affected." -msgstr[1] "%1$d row(s) affected." - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "%1$d row(s) deleted." -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "წაიშალა %1$d სტრიქონი." -msgstr[1] "წაიშალა %1$d სტრიქონი." - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "%1$d row(s) inserted." -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "ჩაისვა %1$d სტრიქონი." -msgstr[1] "ჩაისვა %1$d სტრიქონი." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6885,24 +6976,6 @@ msgstr "Customize navigation frame" msgid "This format has no options" msgstr "ამ ფორმატს არ აქვს პარამეტრები" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Cannot load or save configuration" -msgid "Could not save recent table" -msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "ცხრილების დათვლა" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "There are no configured servers" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "not OK" @@ -7301,68 +7374,6 @@ msgstr "" msgid "Target database" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Unclosed quote" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Invalid Identifer" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Unknown Punctuation String" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7420,57 +7431,76 @@ msgstr "Location of the text file" msgid "web server upload directory" msgstr "web server upload directory" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s ხელმისაწვდომია ამ MySQL სერვერზე." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s გათიშულია ამ MySQL სერვერზე." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "არასწორი მონაცემთა ბაზა" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "ცხრილის არასწორი სახელი" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Unclosed quote" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Table %s has been renamed to %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Invalid Identifer" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Unknown Punctuation String" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7603,38 +7633,6 @@ msgstr "PARTITION definition" msgid "+ Add a value" msgstr "ახალი სერვერის დამატება" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "No valid image path for theme %s found!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "No preview available." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "take it" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Default theme %s not found!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Theme %s not found!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Theme path not found for theme %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8782,13 +8780,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10375,9 +10373,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/ko.po b/po/ko.po index 2103412c0fc3..b01685891c30 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "검색" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "검색" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "실행" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "데이터베이스 %1$s가 생성되었습니다." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "데이터베이스 설명:" @@ -131,9 +131,9 @@ msgstr "데이터베이스 설명:" msgid "Table comments" msgstr "테이블 설명" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "테이블 설명" msgid "Column" msgstr "컬럼명" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "컬럼명" msgid "Type" msgstr "종류" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "링크 대상:" msgid "Comments" msgstr "설명(코멘트)" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "설명(코멘트)" msgid "No" msgstr " 아니오 " -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -261,82 +260,82 @@ msgstr "모두 선택안함" msgid "The database name is empty!" msgstr "데이터베이스명이 없습니다!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "데이터베이스 %s 의 이름을 %s 로 변경하였습니다." -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "데이터베이스 %s 를 %s 로 복사하였습니다." -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "데이터베이스 이름 변경" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "커맨드" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "데이터베이스 이름 변경" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "데이터베이스 %s 를 제거했습니다." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "데이터베이스가 없습니다" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "데이터베이스 복사" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "구조만" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "구조와 데이터 모두" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "데이터만" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "복사 전에 CREATE DATABASE 실행" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%s 추가" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "제약조건 추가" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "복사한 테이블로 옮겨감" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -345,7 +344,7 @@ msgstr "복사한 테이블로 옮겨감" msgid "Collation" msgstr "데이터정렬방식" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,10 +353,10 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" -"s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " +"%s여기를 클릭%s하십시오." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "" @@ -502,101 +501,101 @@ msgstr "데이터베이스 %s에 SQL 질의:" msgid "Submit Query" msgstr "질의 실행" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL 질의가 바르게 실행되었습니다." -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL 메시지: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "프로세스 목록" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "데이터베이스에 테이블이 없습니다." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "테이블 %s 을 제거했습니다." -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "테이블 %s 을 제거했습니다." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "서버 버전" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" msgstr "" @@ -6134,40 +6274,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "인덱스가 설정되지 않았습니다!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "고유값" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinality" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "기본 키를 제거했습니다" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "인덱스 %s 를 제거했습니다" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6180,27 +6286,6 @@ msgstr "없음" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6443,19 +6528,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "테이블이 없습니다" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "" @@ -6843,59 +6915,6 @@ msgstr "" msgid "Target database" msgstr "데이터베이스 검색" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"SQL 질의문에 에러가 있습니다. MySQL 서버가 다음과 같은 에러를 출력했습니다. " -"이것이 문제를 진단하는데 도움이 될 것입니다." - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "따옴표(quote)가 닫히지 않았음" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "잘못된 식별자(Identifer)" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -6953,56 +6972,67 @@ msgstr "SQL 텍스트파일의 위치" msgid "web server upload directory" msgstr "웹서버 업로드 디렉토리" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 php 확장모듈을 설치했" -"는지 확인해보십시오." +"SQL 질의문에 에러가 있습니다. MySQL 서버가 다음과 같은 에러를 출력했습니다. " +"이것이 문제를 진단하는데 도움이 될 것입니다." -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" msgstr "" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" msgstr "" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "따옴표(quote)가 닫히지 않았음" + +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "잘못된 식별자(Identifer)" + +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" msgstr "" -#: libraries/Table.class.php:1139 +#: libraries/sqlvalidator.lib.php:67 #, php-format -msgid "Table %s has been renamed to %s" -msgstr "테이블 %s을(를) %s(으)로 변경하였습니다." - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 php 확장모듈을 설치했" +"는지 확인해보십시오." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7126,38 +7156,6 @@ msgstr "" msgid "+ Add a value" msgstr "새 사용자 추가" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7413,8 +7411,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" -"s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " +"%s여기를 클릭%s하십시오." #: main.php:314 msgid "" @@ -8170,8 +8168,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/lt.po b/po/lt.po index 13c6c0c3b8bd..1b38a0a63d63 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Paieška" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Paieška" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Vykdyti" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Duomenų bazės komentaras: " @@ -132,9 +132,9 @@ msgstr "Duomenų bazės komentaras: " msgid "Table comments" msgstr "Lentelės komentarai" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Lentelės komentarai" msgid "Column" msgstr "Stulpelis" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Stulpelis" msgid "Type" msgstr "Tipas" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Sąryšis su" msgid "Comments" msgstr "Komentarai" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Komentarai" msgid "No" msgstr "Ne" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Atžymėti visas" msgid "The database name is empty!" msgstr "Nenurodytas duomenų bazės vardas!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Duomenų bazė %s pervadinta į %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Duomenų bazė %s buvo nukopijuota į %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Pervadinti duomenų bazę į" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Komanda" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Pašalinti duomenų bazę" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Duomenų bazė %s ištrinta." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Pašalinti duomenų bazę (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopijuoti duomenų bazę į" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Tik struktūra" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktūra ir duomenys" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Tik duomenys" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Pridėti apribojimą" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Pereiti į nukopijuotą duomenų bazę" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Pereiti į nukopijuotą duomenų bazę" msgid "Collation" msgstr "Palyginimas" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -351,7 +350,7 @@ msgid "" msgstr "" "phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Keisti arba eksportuoti ryšių schemą" @@ -498,14 +497,14 @@ msgstr "SQL-užklausa duomenų bazėje %s:" msgid "Submit Query" msgstr "Vykdyti užklausą" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Jūsų SQL užklausa sėkmingai įvykdyta" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -513,96 +512,96 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Leisti įvykdyti saugomas programas (stored routines)." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Sekančios užklausos buvo įvykdytos:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Klaida vykdant užklausą" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Duomenų bazėje nerasta jokių lentelių." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Eksportuoti numatytąsias reikšmes" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Blogas serverio indeksas: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Stulpelis %s panaikintas" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Sukurta %1$s lentelė." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Sukurti sąryšį" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redagavimo režimas" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" -"Pirmoji failo eilutė saugo lentelės stulpelių vardus (jeigu nepažymėta " -"pirma eilutė tampa duomenų dalis)" +"The following structures have either been created or altered. Here you can:" +msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" +"Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Eiti į duomenų bazę" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "nustatymai" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Eiti į lentelę" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Eiti į rodinį (view)" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"Pirmoji failo eilutė saugo lentelės stulpelių vardus (jeigu nepažymėta " +"pirma eilutė tampa duomenų dalis)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " "separated by commas and not enclosed in quotations." msgstr "" @@ -6104,41 +6288,6 @@ msgstr "Stulpelių vardai" msgid "This plugin does not support compressed imports!" msgstr "Priedas nepalaiko suglaudintų importų!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Eiti į duomenų bazę" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "nustatymai" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Eiti į lentelę" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Eiti į rodinį (view)" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6164,41 +6313,6 @@ msgstr "" "XML failo specifikacija yra neteisinga arba neišbaigta. Prašome pataisyti " "klaidas ir bandyti dar kartą." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Nėra aprašytų indeksų!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unikalus" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Suspausta" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Elementų skaičius" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Panaikintas pirminis raktas" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeksas %s ištrintas" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6211,30 +6325,6 @@ msgstr "Nėra" msgid "Convert to Kana" msgstr "Konvertuoti į Kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Pakeista %1$d eilutė." -msgstr[1] "Pakeistos %1$d eilutės." -msgstr[2] "Pakeista %1$d eilučių." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Ištrinta %1$d eilutė." -msgstr[1] "Ištrintos %1$d eilutės." -msgstr[2] "Ištrinta %1$d eilučių." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Įterpta %1$d eilutė." -msgstr[1] "Įterptos %1$d eilutės." -msgstr[2] "Įterpta %1$d eilučių." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6477,24 +6567,6 @@ msgstr "Atsiųsti iš naujo navigacijos rėmelį" msgid "This format has no options" msgstr "Šis formatas neturi nustatymų" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not save configuration" -msgid "Could not save recent table" -msgstr "Nepavyko išsaugoti konfigūracijos" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Suskaičiuoti lenteles" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Nėra jokių sukonfigūruotų serverių" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Negerai" @@ -6882,68 +6954,6 @@ msgstr "Skirtumas" msgid "Target database" msgstr "Į duomenų bazę" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Klaida SQL užklausoje. Žemiau išvestas MySQL serverio pranešimas (jeigu toks " -"yra), turėtų padėti Jums nustatyti klaidos priežastį" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Klaidą SQL interpretatoriuje. Prašome patikrinti ar SQL užklausoje " -"teisingai naudojamos kabutės. Kita, galima klaida, jog Jūs bandote atsiųsti " -"dvejetainius (binary) duomenis neapskliaustus kabutėmis. Taip pat Jūs galite " -"pabandyti įvykdyti savo užklausą iš MySQL konsolės. MySQL serverio išvesta " -"informacija apie klaidą (jeigu tokių bus) gali padėti Jums nustatyti klaidos " -"priežastį. Jeigu užklausa sėkmingai įvykdoma konsolėje, o SQL " -"interpretatorius vistiek išveda pranešimus apie klaidas, prašome " -"supaprastinite savo SQL užklausą ir perduodamų duomenų kiekį užklausoje ir " -"praneškite apie klaidą programos kūrėjams su žemiau pateikiama informacija:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "KIRPIMO PRADŽIA" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "KIRPIMO PABAIGA" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "RAW PRADŽIA" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "RAW PABAIGA" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Trūksta uždaromosios kabutės" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Klaidingas vardas" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Klaidinga skyryba" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7001,56 +7011,76 @@ msgstr "Tekstinio failo vieta" msgid "web server upload directory" msgstr "web serverio katalogas atsiuntimams" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti " -"visi privalomi php moduliai, nurodyti %sdokumentacijoje%s." +"Klaida SQL užklausoje. Žemiau išvestas MySQL serverio pranešimas (jeigu toks " +"yra), turėtų padėti Jums nustatyti klaidos priežastį" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Apie šio Saugojimo Variklio būseną nėra išsamios informacijos." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"Klaidą SQL interpretatoriuje. Prašome patikrinti ar SQL užklausoje " +"teisingai naudojamos kabutės. Kita, galima klaida, jog Jūs bandote atsiųsti " +"dvejetainius (binary) duomenis neapskliaustus kabutėmis. Taip pat Jūs galite " +"pabandyti įvykdyti savo užklausą iš MySQL konsolės. MySQL serverio išvesta " +"informacija apie klaidą (jeigu tokių bus) gali padėti Jums nustatyti klaidos " +"priežastį. Jeigu užklausa sėkmingai įvykdoma konsolėje, o SQL " +"interpretatorius vistiek išveda pranešimus apie klaidas, prašome " +"supaprastinite savo SQL užklausą ir perduodamų duomenų kiekį užklausoje ir " +"praneškite apie klaidą programos kūrėjams su žemiau pateikiama informacija:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s galimas šiame MySQL serveryje." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "KIRPIMO PRADŽIA" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s šiame MySQL serveryje yra išjungtas." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "KIRPIMO PABAIGA" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "RAW PRADŽIA" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Neteisingas duomenų bazės vardas" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "RAW PABAIGA" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Neteisingas lentelės vardas" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Klaida pervadinant lentelę iš %1$s į %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Trūksta uždaromosios kabutės" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Lentelė %s pervadinta į %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Klaidingas vardas" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Klaidinga skyryba" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti " +"visi privalomi php moduliai, nurodyti %sdokumentacijoje%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7175,38 +7205,6 @@ msgstr "SKAIDINIO (PARTITION) apibrėžimas" msgid "+ Add a value" msgstr "Pridėti naują serverį" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Peržiūra negalima." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "pasirinkti" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Standartinė tema %s nerasta!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s nerasta!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Kelias iki temos nerastas temai %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8296,8 +8294,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " @@ -9789,9 +9787,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/lv.po b/po/lv.po index f0de4b9ffdfe..fb3f6a51e9d9 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "Meklēt" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "Meklēt" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Aiziet!" @@ -119,7 +119,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Datubāze %s tika izdzēsta." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Datubāzes komentārs: " @@ -129,9 +129,9 @@ msgstr "Datubāzes komentārs: " msgid "Table comments" msgstr "Komentārs tabulai" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "Komentārs tabulai" msgid "Column" msgstr "Kolonnu nosaukumi" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "Kolonnu nosaukumi" msgid "Type" msgstr "Tips" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "Linki uz" msgid "Comments" msgstr "Komentāri" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "Komentāri" msgid "No" msgstr "Nē" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -261,82 +260,82 @@ msgstr "Neiezīmēt neko" msgid "The database name is empty!" msgstr "Datubāzes nosaukums ir tukšs!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Datubāze %s tika pārsaukta par %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Datubāze %s tika pārkopēta uz %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Komanda" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Datubāze %s tika izdzēsta." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nav datubāzu" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopēt datubāzi uz" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Tikai struktūra" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktūra un dati" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Tikai dati" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Pievienot ierobežojumus" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Pārslēgties uz nokopēto datubāzi" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -345,7 +344,7 @@ msgstr "Pārslēgties uz nokopēto datubāzi" msgid "Collation" msgstr "Izkārtojumi" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -357,7 +356,7 @@ msgstr "" "Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu " "kāpēc, klikškiniet %sšeit%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -510,102 +509,102 @@ msgstr "SQL vaicājums uz datubāzes %s:" msgid "Submit Query" msgstr "Izpildīt vaicājumu" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL teica: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Tabulas nav atrastas šajā datubāzē." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabula %s tika izdzēsta" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Servera versija" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Nav datubāzu" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." msgstr "" #: libraries/import/csv.php:42 @@ -6165,41 +6342,6 @@ msgstr "Kolonnu nosaukumi" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Nav datubāzu" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6224,40 +6366,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Nav definēti indeksi!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unikālais" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinalitāte" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primārā atslēga tika izdzēsta" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indekss %s tika izdzēsts" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6270,29 +6378,6 @@ msgstr "Nav" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Rindas nav iezīmētas" -msgstr[1] "Rindas nav iezīmētas" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Rindas nav iezīmētas" -msgstr[1] "Rindas nav iezīmētas" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6537,19 +6622,6 @@ msgstr "" msgid "This format has no options" msgstr "Šim formātam nav opciju" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Nav tabulu" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "nav OK" @@ -6940,69 +7012,6 @@ msgstr "" msgid "Target database" msgstr "Meklēt datubāzē" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Izkatās, ka Jūsu SQL vaicajumā ir kļūda. MySQL servera kļūdas pazinojums " -"zemāk, ja tāds ir, var arī palīdzet Jums diagnosticēt problēmu." - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Iespējams, ka Jūs esat atraduši kļūdu SQL interpretatorā. Lūdzu apskatiet " -"Jūsu vaicājumu citīgāk, un pārbaudiet, ka pēdiņas ir pareizas un nav " -"sajauktas. Cits kļūdas iemesls var būt tas, ka Jūs atsūtījāt failu ar bināro " -"vērtību ārpus pēdiņās iekļautā teksta lauka. Jūs varat arī izmēģināt savu " -"vaicājumu MySQL komandrindas interfeisā. MySQL servera kļūdas paziņojums " -"zemāk, ja tāds ir, var arī palīdzēt Jums diagnosticēt problēmu. Ja problēma " -"paliek, vai arī iekš phpMyAdmin kļūda ir, bet komandrindā nav, lūdzu " -"samaziniet Jūsu SQL vaicājumu līdz vienkāršam vaicājumam kas izsauc " -"problēmas, un atsūtiet mums ziņojumu par kļūdu, iekļaujot tajā datus no " -"IZGRIEZT sekcijas zemāk:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "IZGRIEZT NO ŠĪS VIETAS" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "IZGRIEZT LĪDZ ŠAI VIETAI" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "RINDAS SĀKUMS" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "RINDAS BEIGAS" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Neaizvērtas pēdiņas" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Nederīgs identifikators" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Nezināmā punktuācijas zīme" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -7061,56 +7070,77 @@ msgstr "Teksta faila atrašanās vieta" msgid "web server upload directory" msgstr "web servera augšupielādes direktorija" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"Nevar inicializēt SQL pārbaudītāju. Lūdzu pārbaudiet, vai esat uzinstalējuši " -"nepieciešamos PHP paplašinājumus, kā aprakstīts %sdokumentācijā%s." +"Izkatās, ka Jūsu SQL vaicajumā ir kļūda. MySQL servera kļūdas pazinojums " +"zemāk, ja tāds ir, var arī palīdzet Jums diagnosticēt problēmu." -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" +"Iespējams, ka Jūs esat atraduši kļūdu SQL interpretatorā. Lūdzu apskatiet " +"Jūsu vaicājumu citīgāk, un pārbaudiet, ka pēdiņas ir pareizas un nav " +"sajauktas. Cits kļūdas iemesls var būt tas, ka Jūs atsūtījāt failu ar bināro " +"vērtību ārpus pēdiņās iekļautā teksta lauka. Jūs varat arī izmēģināt savu " +"vaicājumu MySQL komandrindas interfeisā. MySQL servera kļūdas paziņojums " +"zemāk, ja tāds ir, var arī palīdzēt Jums diagnosticēt problēmu. Ja problēma " +"paliek, vai arī iekš phpMyAdmin kļūda ir, bet komandrindā nav, lūdzu " +"samaziniet Jūsu SQL vaicājumu līdz vienkāršam vaicājumam kas izsauc " +"problēmas, un atsūtiet mums ziņojumu par kļūdu, iekļaujot tajā datus no " +"IZGRIEZT sekcijas zemāk:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "IZGRIEZT NO ŠĪS VIETAS" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "IZGRIEZT LĪDZ ŠAI VIETAI" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "RINDAS SĀKUMS" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "RINDAS BEIGAS" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Neaizvērtas pēdiņas" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabula %s tika pārsaukta par %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Nederīgs identifikators" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Nezināmā punktuācijas zīme" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"Nevar inicializēt SQL pārbaudītāju. Lūdzu pārbaudiet, vai esat uzinstalējuši " +"nepieciešamos PHP paplašinājumus, kā aprakstīts %sdokumentācijā%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7240,38 +7270,6 @@ msgstr "" msgid "+ Add a value" msgstr "Pievienot jaunu lietotāju" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "izmantot šo stilu" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8358,13 +8356,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " "privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " -"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" -"spārlādēt privilēģijas%s pirms Jūs turpināt." +"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " +"%spārlādēt privilēģijas%s pirms Jūs turpināt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/mk.po b/po/mk.po index 63162b58a405..2213346a0285 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Пребарување" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Пребарување" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" @@ -120,7 +120,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Базата на податоци %1$s е креирана" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Коментар на базата на податоци:" @@ -130,9 +130,9 @@ msgstr "Коментар на базата на податоци:" msgid "Table comments" msgstr "Коментар на табелата" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Коментар на табелата" msgid "Column" msgstr "Имиња на колони" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Имиња на колони" msgid "Type" msgstr "Тип" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Врски кон" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Коментари" msgid "No" msgstr "Не" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,80 +261,80 @@ msgstr "ништо" msgid "The database name is empty!" msgstr "Името на базата на податоци не е зададено!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Базата на податоци %s е преименувана во %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Базата на податоци %s е ископирана во %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Наредба" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Избриши ја базата на податоци." -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Базата на податоци %s не е прифатена" -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Базата на податоци не постои" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Копирај ја базата на податоци во" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Структура и податоци" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Само податоци" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Додади ограничувања" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Префрли се на копираната база на податоци" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,7 +343,7 @@ msgstr "Префрли се на копираната база на подато msgid "Collation" msgstr "Подредување" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -356,7 +355,7 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -509,104 +508,104 @@ msgstr "SQL упит на базата на податоци %s:" msgid "Submit Query" msgstr "Изврши SQL" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Вашиот SQL упит успешно е извршен" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозволува извршување на stored рутини." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL порака: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy msgid "Error in processing request" msgstr "Листа на процеси" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Табелите не се пронајдени во базата на податоци." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Табелата %s е избришана" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Табелата %s е избришана" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Верзија на серверот" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутини" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Базата на податоци не постои" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." msgstr "" #: libraries/import/csv.php:42 @@ -6201,41 +6378,6 @@ msgstr "Имиња на колони" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Базата на податоци не постои" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6260,40 +6402,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Клучот не е дефиниран!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Единствен" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Кардиналност" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Примарниот клуч е избришан" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Клучот %s е избиршан" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6306,29 +6414,6 @@ msgstr "нема" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Нема селектирани записи" -msgstr[1] "Нема селектирани записи" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Нема селектирани записи" -msgstr[1] "Нема селектирани записи" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6573,19 +6658,6 @@ msgstr "" msgid "This format has no options" msgstr "Не постојат опции за овој формат" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Нема табела" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "не е како што треба" @@ -6977,68 +7049,6 @@ msgstr "" msgid "Target database" msgstr "Пребарување низ базата на податоци" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Изгледа дека има грешка во вашиот SQL упит. Еве ја пораката за грешката од " -"MySQL серверот, која може да ви помогне во откривањето на проблемот" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Постои можност дека сте отркиле грешка во SQL парсерот. Ве молиме внимателно " -"проверете го вашиот упит, проверете дали наводниците се правилно поставени " -"или дали можеби недостасуваат. Други можни причини се: бинарна податотека " -"надвор од областа за обичен текст. Можете да го пробате упит командната " -"линија на MySQL. Долната порака за грешка на MySQL серверот, може да ви " -"помогне да го откриете проблемот. Ако и понатаму имате проблеми или ако " -"парсерот не успеава иако од командата линија се е во ред, испратете го " -"својот SQL упит со извештајот за грешка и делот од кодот во долната РЕЗ " -"секција до нас за да можеме да провериме за што се работи." - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "ПОЧЕТОК ПРЕСЕК" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "КРАЈ ПРЕСЕК" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "ПОЧЕТОК СУРОВО" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "КРАЈ СУРОВО" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Наводникот не е затворен" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Неисправен идентификатор" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Непознат стринг за интерпункција" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -7097,56 +7107,76 @@ msgstr "Локација на текстуалната податотека" msgid "web server upload directory" msgstr "директориум за праќање на веб серверот " -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани " -"неопходните PHP екстензии опишане во %sдокументацијата%s." +"Изгледа дека има грешка во вашиот SQL упит. Еве ја пораката за грешката од " +"MySQL серверот, која може да ви помогне во откривањето на проблемот" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Нема детални информации за статусот на овој вид на складиште." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"Постои можност дека сте отркиле грешка во SQL парсерот. Ве молиме внимателно " +"проверете го вашиот упит, проверете дали наводниците се правилно поставени " +"или дали можеби недостасуваат. Други можни причини се: бинарна податотека " +"надвор од областа за обичен текст. Можете да го пробате упит командната " +"линија на MySQL. Долната порака за грешка на MySQL серверот, може да ви " +"помогне да го откриете проблемот. Ако и понатаму имате проблеми или ако " +"парсерот не успеава иако од командата линија се е во ред, испратете го " +"својот SQL упит со извештајот за грешка и делот од кодот во долната РЕЗ " +"секција до нас за да можеме да провериме за што се работи." -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s е достапен на овој MySQL сервер." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "ПОЧЕТОК ПРЕСЕК" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s е оневозможен на овој MySQL сервер." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "КРАЈ ПРЕСЕК" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Овој MySQL сервер не подржува %s вид на складиште." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "ПОЧЕТОК СУРОВО" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "КРАЈ СУРОВО" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Наводникот не е затворен" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Табелата %s е преименувана во %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Неисправен идентификатор" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Непознат стринг за интерпункција" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани " +"неопходните PHP екстензии опишане во %sдокументацијата%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7277,38 +7307,6 @@ msgstr "" msgid "+ Add a value" msgstr "Додади нов корисник" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "превземи" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8422,8 +8420,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " "табелата на привилегии. Содржината на оваа табела табела може да се " diff --git a/po/ml.po b/po/ml.po index 072f36714784..988b4c9e1a26 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" +"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" "X-Generator: Translate Toolkit 1.7.0\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -43,13 +43,13 @@ msgstr "" msgid "Search" msgstr "" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -62,18 +62,18 @@ msgstr "" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "" @@ -118,7 +118,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "" @@ -128,9 +128,9 @@ msgstr "" msgid "Table comments" msgstr "" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -139,12 +139,12 @@ msgstr "" msgid "Column" msgstr "" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -154,9 +154,9 @@ msgstr "" msgid "Type" msgstr "" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -194,13 +194,12 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -211,17 +210,17 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -258,79 +257,79 @@ msgstr "" msgid "The database name is empty!" msgstr "" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -339,14 +338,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "" @@ -492,97 +491,97 @@ msgstr "" msgid "Submit Query" msgstr "" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, php-format msgid "No routine with name %1$s found in database %2$s" msgstr "" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" msgstr "" @@ -5809,40 +5948,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -5853,27 +5958,6 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "" @@ -6112,18 +6196,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "" @@ -6493,57 +6565,6 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6599,53 +6620,62 @@ msgstr "" msgid "web server upload directory" msgstr "" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" msgstr "" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" msgstr "" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" msgstr "" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -6752,38 +6782,6 @@ msgstr "" msgid "+ Add a value" msgstr "" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7732,8 +7730,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/mn.po b/po/mn.po index 40550eb79f87..d0de1634276e 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -43,13 +43,13 @@ msgstr "" msgid "Search" msgstr "Хайх" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -62,18 +62,18 @@ msgstr "Хайх" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Яв" @@ -118,7 +118,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " @@ -128,9 +128,9 @@ msgstr "ӨС-ийн тайлбар: " msgid "Table comments" msgstr "Хүснэгтийн тайлбар" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -141,12 +141,12 @@ msgstr "Хүснэгтийн тайлбар" msgid "Column" msgstr "Баганын нэрс" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -156,9 +156,9 @@ msgstr "Баганын нэрс" msgid "Type" msgstr "Төрөл" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -196,13 +196,12 @@ msgstr "Холбоос" msgid "Comments" msgstr "Тайлбар" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -213,17 +212,17 @@ msgstr "Тайлбар" msgid "No" msgstr "Үгүй" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -260,83 +259,83 @@ msgstr "Бүх сонгосныг болих" msgid "The database name is empty!" msgstr "Өгөгдлийн сангийн нэр хоосон!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "ӨС %s-н нэр нь %s-ээр солигджээ" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "ӨС %s нь %s руу хуулагдлаа" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Команд" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "%s өгөгдлийн сан устгагдсан." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Зөвхөн бүтэц" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Зөвхөн өгөгдөл" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Тогтмол нэмэх" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Хуулагдсан ӨС руу шилжих" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -345,7 +344,7 @@ msgstr "Хуулагдсан ӨС руу шилжих" msgid "Collation" msgstr "Жишилт" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -357,7 +356,7 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -510,106 +509,106 @@ msgstr "ӨС %s дахь SQL-асуулт:" msgid "Submit Query" msgstr "Асуултыг илгээх" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Таны SQL-асуулт амжилттай ажиллав" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процессууд" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "ӨС-д хүснэгт олдсонгүй." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Хүснэгт %s нь устгагдлаа" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been created." msgstr "Хүснэгт %s нь устгагдлаа" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Холбоо үүсгэх" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" +msgstr "" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" msgstr "" #: libraries/import/csv.php:40 @@ -6196,40 +6375,6 @@ msgstr "Баганын нэрс" msgid "This plugin does not support compressed imports!" msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэмжихгүй!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6254,40 +6399,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Индекс тодорхойлогдоогүй!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Үл давтагдах" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Ерөнхий" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Үндсэн түлхүүр устгагдлаа" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Индекс %s нь устгагдсан" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6300,29 +6411,6 @@ msgstr "Байхгүй" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Сонгогдсон мөргүй" -msgstr[1] "Сонгогдсон мөргүй" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Сонгогдсон мөргүй" -msgstr[1] "Сонгогдсон мөргүй" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6567,22 +6655,6 @@ msgstr "" msgid "This format has no options" msgstr "Энэ тогтнол сонголтгүй" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Select Tables" -msgid "Recent tables" -msgstr "Хүснэгтүүд сонго" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Бэлэн биш" @@ -6971,68 +7043,6 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Хаагдаагүй хашилт" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Буруу тодорхойлогч" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Тэмдэгт мөрийн үл мэдэх цэг тэмдэглэл" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7090,56 +7100,76 @@ msgstr "Бичвэрфайлын байрлал" msgid "web server upload directory" msgstr "web-сервэр түлхэх хавтас" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана " -"уу, %sбаримтжуулалд%s тодорхойлогдсон." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Энд уг агуулах хөдөлгүүрийн дэлгэрэнгүй төлвийн мэдээлэл алга." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s нь уг MySQL сервэрт идэвхтэй байна." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s нь уг MySQL сервэр дээр хаалттай байна." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Буруу өгөгдлийн сан" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Хүснэгтийн буруу нэр" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Хаагдаагүй хашилт" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Буруу тодорхойлогч" + +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Тэмдэгт мөрийн үл мэдэх цэг тэмдэглэл" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана " +"уу, %sбаримтжуулалд%s тодорхойлогдсон." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7270,38 +7300,6 @@ msgstr "" msgid "+ Add a value" msgstr "Шинэ хэрэглэгч нэмэх" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Боломжит харагдац байхгүй байна." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "авах" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Анхдагч сэдэв %s байхгүй байна!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Сэдэв %s олдсонгүй!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8386,8 +8384,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " @@ -10768,8 +10766,8 @@ msgstr "" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%" -#~ "s дарж шалгах." +#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд" +#~ "%s дарж шалгах." #~ msgid "Ignore duplicate rows" #~ msgstr "Давхардсан мөрүүдийг алгасах" diff --git a/po/ms.po b/po/ms.po index 9bf3200da028..555f608555b7 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -41,13 +41,13 @@ msgstr "" msgid "Search" msgstr "Cari" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -60,18 +60,18 @@ msgstr "Cari" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Pergi" @@ -118,7 +118,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "angkalan data %s telah digugurkan." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 #, fuzzy msgid "Database comment: " msgstr "Komen jadual" @@ -129,9 +129,9 @@ msgstr "Komen jadual" msgid "Table comments" msgstr "Komen jadual" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "Komen jadual" msgid "Column" msgstr "Nama Kolum" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "Nama Kolum" msgid "Type" msgstr "Jenis" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "Pautan ke" msgid "Comments" msgstr "Komen" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "Komen" msgid "No" msgstr "Tidak" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,83 +261,83 @@ msgstr "Nyahpilih Semua" msgid "The database name is empty!" msgstr "Nama jadual adalah kosong" -#: db_operations.php:271 +#: db_operations.php:272 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Jadual %s telah ditukarnama ke %s" -#: db_operations.php:275 +#: db_operations.php:276 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Jadual %s telah disalin ke %s." -#: db_operations.php:403 +#: db_operations.php:404 #, fuzzy msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Arahan" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy msgid "Remove database" msgstr "Tukarnama jadual ke" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "angkalan data %s telah digugurkan." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Tiada pangkalan data" -#: db_operations.php:486 +#: db_operations.php:487 #, fuzzy msgid "Copy database to" msgstr "Tiada pangkalan data" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Struktur sahaja" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Data sahaja" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Tukar kepada pengkalan data yang di salin" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -347,7 +346,7 @@ msgstr "Tukar kepada pengkalan data yang di salin" msgid "Collation" msgstr "" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -359,7 +358,7 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -513,102 +512,102 @@ msgstr "SQL- kueri pada pangkalan data %s:" msgid "Submit Query" msgstr "Hantar Kueri" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL berkata: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proses-proses" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Tiada jadual dijumpai pada pangkalan data." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Jadual %s telah digugurkan" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Versi Pelayan" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " @@ -6099,41 +6274,6 @@ msgstr "Nama Kolum" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Tiada pangkalan data" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6156,40 +6296,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Tiada indeks ditafrifkan!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unik" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinaliti" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Kekunci utama telah digugurkan" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeks %s telah digugurkan" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6202,27 +6308,6 @@ msgstr "Tiada" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6464,19 +6549,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Tiada Jadual" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "tidak OK" @@ -6864,69 +6936,6 @@ msgstr "" msgid "Target database" msgstr "Cari di pangkalan data" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Ada kemungkin kueri SQL anda salah. Dibawah adalah kesalah Pelayan MySql , " -"jika ada, ianya membantu anda menganalisis masalah" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Ada kemungkinan anda akan berjumpa dengan pepijat di penghuraian SQL. Sila " -"semak kueri anda dengan teliti, dan periksa tanda quote adalah betul dan " -"tidak tersalah letak. Antara kegagalan lain mungkin disebabkan fail yang " -"dimuatnaik bersama binari oleh anda berada diluar kawasan quote. Anda juga " -"boleh mencuba kueri MySQL anda di antaramuka aturan baris (cli). Dibawah " -"adalah kesalah Pelayan MySql , jika ada, ianya membantu anda menganalisis " -"masalah. Jika masih terdapat pemasalahan atau masalah penghuraian dimana " -"antaramuka aturan baris berjaya, sila kurangkan kemasukan kueri SQL kepada " -"satu kueri yang bermasalah, dan lapurkan pepijat desertai oleh seruas data " -"dan SALIN keratan rentas dibawah:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "MULA SALIN" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "TAMAT SALIN" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "MULA MENTAH" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "TAMAT MENTAH" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Tanda quote tidak disertakan" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Pengenalan TidakSah" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "TandaBaca tidak dikenali" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -6984,56 +6993,77 @@ msgstr "Lokasi bagi fail teks" msgid "web server upload directory" msgstr "direktori muatnaik pelayan-web" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang " -"sambungan php seperti yang tercatit di %sdocumentation%s." +"Ada kemungkin kueri SQL anda salah. Dibawah adalah kesalah Pelayan MySql , " +"jika ada, ianya membantu anda menganalisis masalah" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" +"Ada kemungkinan anda akan berjumpa dengan pepijat di penghuraian SQL. Sila " +"semak kueri anda dengan teliti, dan periksa tanda quote adalah betul dan " +"tidak tersalah letak. Antara kegagalan lain mungkin disebabkan fail yang " +"dimuatnaik bersama binari oleh anda berada diluar kawasan quote. Anda juga " +"boleh mencuba kueri MySQL anda di antaramuka aturan baris (cli). Dibawah " +"adalah kesalah Pelayan MySql , jika ada, ianya membantu anda menganalisis " +"masalah. Jika masih terdapat pemasalahan atau masalah penghuraian dimana " +"antaramuka aturan baris berjaya, sila kurangkan kemasukan kueri SQL kepada " +"satu kueri yang bermasalah, dan lapurkan pepijat desertai oleh seruas data " +"dan SALIN keratan rentas dibawah:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "MULA SALIN" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "TAMAT SALIN" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "MULA MENTAH" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "TAMAT MENTAH" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Tanda quote tidak disertakan" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Jadual %s telah ditukarnama ke %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Pengenalan TidakSah" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "TandaBaca tidak dikenali" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang " +"sambungan php seperti yang tercatit di %sdocumentation%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7159,38 +7189,6 @@ msgstr "" msgid "+ Add a value" msgstr "Tambah Pengguna Baru" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8206,8 +8204,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/nb.po b/po/nb.po index d621a7e4841b..35f65863210a 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "Søk" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "Søk" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Utfør" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databasen %1$s har blitt opprettet." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Database kommentar: " @@ -131,9 +131,9 @@ msgstr "Database kommentar: " msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "Tabellkommentarer" msgid "Column" msgstr "Kolonne" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "Kolonne" msgid "Type" msgstr "Type" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "Kommentarer" msgid "No" msgstr "Nei" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -261,79 +260,79 @@ msgstr "Fjern alle valgte" msgid "The database name is empty!" msgstr "Databasen er uten navn!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databasen %s har endret navn til %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Databasen %s har blitt kopiert til %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Kommando" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Fjern database" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har blitt slettet" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopier databasen til" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Kun struktur" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Bare data" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Legg til begrensninger" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Bytt til kopiert database" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -342,7 +341,7 @@ msgstr "Bytt til kopiert database" msgid "Collation" msgstr "Sammenligning" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -350,7 +349,7 @@ msgid "" msgstr "" "phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Rediger eller eksporter relasjonsskjema" @@ -496,110 +495,110 @@ msgstr "SQL-spørring i database %s:" msgid "Submit Query" msgstr "Kjør spørring" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Kommandoen/spørringen er utført" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Tillater utføring av lagrede rutiner." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Følgende spørringer har blitt utført:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL sa: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Feil i prosesseringsforespørsel" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Ingen tabeller funnet i databasen" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Eksportinnstillinger" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Kolonne %s har blitt slettet" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Opprett relasjon" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redigeringsmodus" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" +"Følgende strukturer har enten blitt opprettet eller endret. Her kan du:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Vis en strukturs innhold ved å klikke på dens navn" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" +"Endre noen av dens innstillinger ved å klikke på den tilhørende " +"\"Innstillinger\" link" -#: libraries/import/csv.php:42 -msgid "Column names: " -msgstr "Kolonnenavn:" +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Endre dens struktur ved å følge \"Struktur\" linken" -#: libraries/import/csv.php:62 libraries/import/csv.php:75 -#: libraries/import/csv.php:80 libraries/import/csv.php:85 +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Gå til database" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "innstillinger" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Gå til tabell" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Gå til visning" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +msgid "Column names: " +msgstr "Kolonnenavn:" + +#: libraries/import/csv.php:62 libraries/import/csv.php:75 +#: libraries/import/csv.php:80 libraries/import/csv.php:85 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ugyldig parameter for CSV import: %s" @@ -6214,43 +6399,6 @@ msgstr "Kolonnenavn" msgid "This plugin does not support compressed imports!" msgstr "Dette tillegget støtter ikke komprimerte importeringer!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" -"Følgende strukturer har enten blitt opprettet eller endret. Her kan du:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Vis en strukturs innhold ved å klikke på dens navn" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Endre noen av dens innstillinger ved å klikke på den tilhørende " -"\"Innstillinger\" link" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Endre dens struktur ved å følge \"Struktur\" linken" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Gå til database" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "innstillinger" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Gå til tabell" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Gå til visning" - #: libraries/import/ods.php:28 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" @@ -6283,42 +6431,6 @@ msgstr "" "Den spesifiserte XML-fila var enten skadet eller ufulstendig. Korriger " "problemet og prøv igjen." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Ingen indeks definert!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unik" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Pakket" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinalitet" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primærnøkkelen har blitt slettet" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeksen %s har blitt slettet" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne " -"fjernes." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6329,27 +6441,6 @@ msgstr "Ingen" msgid "Convert to Kana" msgstr "Konverter til Kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d rad berørt." -msgstr[1] "%1$d rader berørt." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d rader slettet." -msgstr[1] "%1$d rader slettet." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d rader innsatt." -msgstr[1] "%1$d rader innsatt." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6594,24 +6685,6 @@ msgstr "Endre navigasjonsrammen" msgid "This format has no options" msgstr "Dette formatet har ingen valg" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not save configuration" -msgid "Could not save recent table" -msgstr "Kunne ikke lagre konfigurasjonen" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Tell tabeller" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Der finnes ingen konfigurerte tjenere" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "ikke OK" @@ -7000,6 +7073,61 @@ msgstr "Differanse" msgid "Target database" msgstr "Måldatabase" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Kjør SQL spørring/spørringer på tjener %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Kjør SQL spørring/spørringer mot databasen %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Fjern" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Kolonner" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Lagre denne SQL-spørringen" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "La alle brukere ha adgang til dette bokmerket" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Erstatt eksisterende bokmerke med samme navn" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Ikke overskriv denne spørringen fra andre vinduer" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Skilletegn" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Vis denne spørring her igjen " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Bare se" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Plassering av filen" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "webtjener opplastingskatalog" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7064,61 +7192,6 @@ msgstr "Ugyldig identifikator" msgid "Unknown Punctuation String" msgstr "Ukjent tegnsettingsstreng" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Kjør SQL spørring/spørringer på tjener %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Kjør SQL spørring/spørringer mot databasen %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Fjern" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Kolonner" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Lagre denne SQL-spørringen" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "La alle brukere ha adgang til dette bokmerket" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Erstatt eksisterende bokmerke med samme navn" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Ikke overskriv denne spørringen fra andre vinduer" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Skilletegn" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Vis denne spørring her igjen " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Bare se" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Plassering av filen" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "webtjener opplastingskatalog" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7128,49 +7201,6 @@ msgstr "" "SQL-kontrolleren kunne ikke startes. Vennligst sjekk at du har installert de " "nødvendige php-tilleggene som beskrevet i %sdokumentasjonen%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Det er ikke noen detaljert statusinformasjon for denne lagringsmotoren." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s er tilgjengelig på denne MySQL theneren." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s har blitt dekativert for denne MySQL tjeneren." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Ugylding database" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Ugylding tabellnavn" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabellen %s har fått nytt navn %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Tabellen ser ut til å være tom!" @@ -7212,8 +7242,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"For en liste over tilgjengelige transformasjonsvalg, klikk på %" -"stransformasjonsbeskrivelser%s" +"For en liste over tilgjengelige transformasjonsvalg, klikk på " +"%stransformasjonsbeskrivelser%s" #: libraries/tbl_properties.inc.php:144 msgid "Transformation options" @@ -7291,38 +7321,6 @@ msgstr "Partisjonsdefinisjon" msgid "+ Add a value" msgstr "+ Legg til ny verdi" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Ingen gyldig bildesti for stilen %s ble funnet!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Ingen forhandsvisning tilgjengelig." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "velg" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Standard stil %s ble ikke funnet!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Stilen %s ble ikke funnet!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Stilsti ble ikke funnet for stilen %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8415,8 +8413,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " "privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " @@ -10019,8 +10017,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Hvis du føler at dette er nødvending, så bruk ekstra " -"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" +"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" "page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. " "Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en " "Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet." @@ -10031,9 +10029,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/nl.po b/po/nl.po index 8db956ada626..f8bba31a8ff0 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "Zoeken" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "Zoeken" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Start" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Database %1$s is aangemaakt." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Database opmerking: " @@ -131,9 +131,9 @@ msgstr "Database opmerking: " msgid "Table comments" msgstr "Tabelopmerkingen" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "Tabelopmerkingen" msgid "Column" msgstr "Kolom" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "Kolom" msgid "Type" msgstr "Type" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "Verwijst naar" msgid "Comments" msgstr "Opmerkingen" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "Opmerkingen" msgid "No" msgstr "Nee" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -261,79 +260,79 @@ msgstr "Deselecteer alles" msgid "The database name is empty!" msgstr "De database naam is leeg!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s is hernoemd naar %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s is gekopieerd naar %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Hernoem database naar" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Commando" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Verwijder database" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Database %s is verwijderd." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Laat de database vervallen (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopieer database naar" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Alleen structuur" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Structuur en gegevens" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Alleen data" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE voor het kopiëren" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT waarde toe" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Voeg beperkingen toe" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Overschakelen naar de gekopieerde database" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -342,7 +341,7 @@ msgstr "Overschakelen naar de gekopieerde database" msgid "Collation" msgstr "Collatie" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -351,7 +350,7 @@ msgstr "" "De phpMyAdmin configuratie-opslag is uitgeschakeld. Om te weten te komen " "waarom klik %shier%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Bewerk of exporteer relationeel schema" @@ -497,110 +496,110 @@ msgstr "SQL-query op database %s:" msgid "Submit Query" msgstr "Query uitvoeren" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Uw SQL-query is succesvol uitgevoerd" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Maakt het mogelijk om stored routines uit te voeren." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultaat set terug (0 rijen)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "De volgende queries zijn uitgevoerd:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL retourneerde: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Fout tijdens het verwerken van de opdracht" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Geen tabellen gevonden in de database" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Export standaarden" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Ongeldige serverindex: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Kolom %s is verwijderd" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tabel %1$s is aangemaakt." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Maak relatie" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Wijzig-mode" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" -"De eerste regel van het bestand bevat kolomnamen (als dit niet aangevinkt " -"is, wordt de eerste regel beschouwd als data)" +"The following structures have either been created or altered. Here you can:" +msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "De inhoud van een structuur bekijken door er op te klikken" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." -msgstr "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "Een instelling veranderen door op \"Opties\" te klikken" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Ga naar database" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "instellingen" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Ga naar tabel" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Ga naar view" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"De eerste regel van het bestand bevat kolomnamen (als dit niet aangevinkt " +"is, wordt de eerste regel beschouwd als data)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" "Als de data in elke regel van het bestand niet in dezelfde volgorde staat " "als deze van de database, vul hier dan de overeenkomstige kolomnamen in. " "Kolomnamen moeten gescheiden worden door komma's en mogen niet voorzien zijn " @@ -6227,40 +6404,6 @@ msgstr "Kolom namen" msgid "This plugin does not support compressed imports!" msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "De inhoud van een structuur bekijken door er op te klikken" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "Een instelling veranderen door op \"Opties\" te klikken" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Ga naar database" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "instellingen" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Ga naar tabel" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Ga naar view" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Percentages als decimalen importeren (12.00% naar ,12)" @@ -6285,42 +6428,6 @@ msgstr "" "Het XML-bestand was beschadigd of onvolledig. Repareer het bestand en " "probeer opnieuw." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Geen index gedefinieerd!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unieke waarde" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Gecomprimeerd" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinaliteit" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "De primaire sleutel is vervallen" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Index %s is vervallen" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden " -"verwijderd." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6332,27 +6439,6 @@ msgstr "Geen" msgid "Convert to Kana" msgstr "Zet om naar Kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d rij bijgewerkt." -msgstr[1] "%1$d rijen bijgewerkt." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d rij verwijderd." -msgstr[1] "%1$d rijen verwijderd." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d rij toegevoegd." -msgstr[1] "%1$d rijen toegevoegd." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "Van" @@ -6592,18 +6678,6 @@ msgstr "Navigatievenster herladen" msgid "This format has no options" msgstr "Dit format heeft geen opties" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Recente tabel kon niet opgeslagen worden" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Recente tabellen" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Er zijn geen recente tabellen" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Niet Goed" @@ -6989,6 +7063,61 @@ msgstr "Verschil" msgid "Target database" msgstr "Doel database" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Voer SQL query/queries uit op de server %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Draai SQL query/queries op database %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Clear" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Kolommen" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Sla deze SQL-query op" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Geef elke gebruiker toegang tot deze bookmark" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Bookmark met dezelfde naam overschrijven" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Overschrijf deze query niet vanuit een ander scherm" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Scheidingsteken" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Laat deze query hier zien " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Alleen bekijken" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Locatie van het tekstbestand" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "web-server upload directory" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7052,61 +7181,6 @@ msgstr "Ongeldig herkenningsteken" msgid "Unknown Punctuation String" msgstr "Onbekende Punctuatie String" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Voer SQL query/queries uit op de server %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Draai SQL query/queries op database %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Clear" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Kolommen" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Sla deze SQL-query op" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Geef elke gebruiker toegang tot deze bookmark" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Bookmark met dezelfde naam overschrijven" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Overschrijf deze query niet vanuit een ander scherm" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Scheidingsteken" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Laat deze query hier zien " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Alleen bekijken" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Locatie van het tekstbestand" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "web-server upload directory" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7116,50 +7190,6 @@ msgstr "" "De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de nodige " "PHP-extensies heeft geïnstalleerd, zoals beschreven in de %sdocumentatie%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Er is geen gedetailleerde status informatie beschikbaar voor deze opslag " -"engine." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s is beschikbaar op deze MySQL-server." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s is uitgeschakeld op deze MySQL-server." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Deze MySQL-server ondersteund de %s storage engine niet." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Ongeldige database" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Ongeldige tabel naam" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabel %s is hernoemd naar %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "UI tabel voorkeuren konden niet worden opgeslagen" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Tabel lijkt leeg!" @@ -7281,38 +7311,6 @@ msgstr "PARTITION definitie" msgid "+ Add a value" msgstr "+ Een nieuwe waarde toevoegen" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Geen geldig afbeeldingen pad voor thema %s gevonden!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Geen preview beschikbaar." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "neem het" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Standaard thema %s niet gevonden!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Thema %s niet gevonden!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Thema pad niet gevonden voor thema %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8377,8 +8375,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL " "privileges tabel. De content van deze tabel kan verschillen met de rechten " diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index d5f83ad8618c..f13801ea8c7c 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,10 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -45,13 +46,13 @@ msgstr "" msgid "Search" msgstr "" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +65,18 @@ msgstr "" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "" @@ -120,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "" @@ -130,9 +131,9 @@ msgstr "" msgid "Table comments" msgstr "" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -141,12 +142,12 @@ msgstr "" msgid "Column" msgstr "" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -156,9 +157,9 @@ msgstr "" msgid "Type" msgstr "" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -196,13 +197,12 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -213,17 +213,17 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -260,79 +260,79 @@ msgstr "" msgid "The database name is empty!" msgstr "" -#: db_operations.php:271 +#: db_operations.php:272 #, possible-php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:275 +#: db_operations.php:276 #, possible-php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "" -#: db_operations.php:451 +#: db_operations.php:452 #, possible-php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, possible-php-format msgid "Add %s" msgstr "" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -341,14 +341,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:564 +#: db_operations.php:565 #, possible-php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "" @@ -494,97 +494,97 @@ msgstr "" msgid "Submit Query" msgstr "" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_routines.php:155 +#: db_routines.php:157 #, possible-php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, possible-php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, possible-php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, possible-php-format msgid "No routine with name %1$s found in database %2$s" msgstr "" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, possible-php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, possible-php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, possible-php-format msgid "Routine %1$s has been modified." msgstr "" -#: db_routines.php:327 +#: db_routines.php:329 #, possible-php-format msgid "Routine %1$s has been created." msgstr "" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" msgstr "" @@ -5811,40 +5951,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "" - -#: libraries/Index.class.php:478 -#, possible-php-format -msgid "Index %s has been dropped" -msgstr "" - -#: libraries/Index.class.php:582 -#, possible-php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -5855,27 +5961,6 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, possible-php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, possible-php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, possible-php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "" @@ -6114,18 +6199,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "" @@ -6495,57 +6568,6 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, possible-php-format msgid "Run SQL query/queries on server %s" @@ -6601,53 +6623,62 @@ msgstr "" msgid "web server upload directory" msgstr "" -#: libraries/sqlvalidator.lib.php:67 -#, possible-php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/StorageEngine.class.php:355 -#, possible-php-format -msgid "%s is available on this MySQL server." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" msgstr "" -#: libraries/StorageEngine.class.php:358 -#, possible-php-format -msgid "%s has been disabled for this MySQL server." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" msgstr "" -#: libraries/StorageEngine.class.php:362 -#, possible-php-format -msgid "This MySQL server does not support the %s storage engine." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, possible-php-format -msgid "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" msgstr "" -#: libraries/Table.class.php:1139 -#, possible-php-format -msgid "Table %s has been renamed to %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" msgstr "" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "" + +#: libraries/sqlvalidator.lib.php:67 +#, possible-php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -6754,38 +6785,6 @@ msgstr "" msgid "+ Add a value" msgstr "" -#: libraries/Theme.class.php:160 -#, possible-php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, possible-php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, possible-php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, possible-php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7734,8 +7733,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/pl.po b/po/pl.po index 9a1beb3d38b4..00300c377648 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Szukaj" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Szukaj" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Wykonaj" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Komentarz bazy danych: " @@ -133,9 +133,9 @@ msgstr "Komentarz bazy danych: " msgid "Table comments" msgstr "Komentarze tabeli" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "Komentarze tabeli" msgid "Column" msgstr "Kolumna" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "Kolumna" msgid "Type" msgstr "Typ" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Łącze" msgid "Comments" msgstr "Komentarze" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "Komentarze" msgid "No" msgstr "Nie" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,79 +262,79 @@ msgstr "Usuń zaznaczenie" msgid "The database name is empty!" msgstr "Nazwa bazy danych jest pusta!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza danych %s ma nazwę zmienioną na %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza danych %s została przekopiowana do %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Polecenie" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Usuń bazę danych" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Baza danych %s została usunięta." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Usuń bazę danych (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopiuj bazę danych do" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Tylko struktura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktura i dane" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Tylko dane" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed przekopiowaniem" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartości AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Dodaj ograniczenia" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Przełącz do przekopiowanej bazy danych" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,7 +343,7 @@ msgstr "Przełącz do przekopiowanej bazy danych" msgid "Collation" msgstr "Metoda porównywania napisów" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -356,7 +355,7 @@ msgstr "" "Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby " "dowiedzieć się, dlaczego - kliknij %stutaj%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Edytuj lub eksportuj schemat relacji" @@ -505,14 +504,14 @@ msgstr "Zapytanie SQL dla bazy danych %s:" msgid "Submit Query" msgstr "Wykonaj zapytania" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Zapytanie SQL zostało wykonane pomyślnie" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -520,96 +519,96 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Pozwól wykonywać procedury składowane." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero rekordów)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Wykonane zostały następujące zapytania:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Błąd przetwarzania wywołania" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Nie znaleziono żadnych tabel w bazie danych." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Domyślne opcje eksportu" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Niewłaściwy numer serwera: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabela %s została usunięta" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tabela %1$s została utworzona." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Utwórz relację" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Tryb edycji" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " +"The following structures have either been created or altered. Here you can:" +msgstr "" +"Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Zobacz zawartość struktury klikając jej nazwę" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\"" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\"" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Przejdź do bazy danych" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "ustawienia" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Przejdź do tabeli" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Przejdź do widoku" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" msgstr "" "Pierwsza linia pliku zawiera nazwy kolumn (jeśli wyłączone, pierwsza " @@ -6394,41 +6580,6 @@ msgstr "Nazwy kolumn" msgid "This plugin does not support compressed imports!" msgstr "Ten moduł nie obsługuje skompresowanych importów!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" -"Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Zobacz zawartość struktury klikając jej nazwę" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\"" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\"" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Przejdź do bazy danych" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "ustawienia" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Przejdź do tabeli" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Przejdź do widoku" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6456,42 +6607,6 @@ msgstr "" "Plik XML ma nieprawidłową strukturę lub jest niekompletny. Proszę skorygować " "problem i spróbować ponownie." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Brak zdefiniowanego indeksu!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Jednoznaczny" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Spakowany" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Moc" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Klucz podstawowy został usunięty" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Klucz %s został usunięty" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać " -"usunięty." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6504,30 +6619,6 @@ msgstr "Brak" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Zmodyfikowanych rekordów: %1$d." -msgstr[1] "Zmodyfikowanych rekordów: %1$d." -msgstr[2] "Zmodyfikowanych rekordów: %1$d." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Usuniętych rekordów: %1$d." -msgstr[1] "Usuniętych rekordów: %1$d." -msgstr[2] "Usuniętych rekordów: %1$d." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Wstawionych rekordów: %1$d." -msgstr[1] "Wstawionych rekordów: %1$d." -msgstr[2] "Wstawionych rekordów: %1$d." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6771,24 +6862,6 @@ msgstr "Indywidualizacja ramki nawigacyjnej" msgid "This format has no options" msgstr "Ten format nie ma żadnych opcji" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Cannot load or save configuration" -msgid "Could not save recent table" -msgstr "Nie udało się załadować lub zapisać konfiguracji" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Zliczaj tabele" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Brak skonfigurowanych serwerów" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "błąd" @@ -7190,6 +7263,63 @@ msgstr "Różnica" msgid "Target database" msgstr "Docelowa baza danych" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Wyczyść" + +#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Column names" +msgid "Columns" +msgstr "Nazwy kolumn" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Pamiętaj zapytanie SQL" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Pozwól na dostęp wszystkim użytkownikom" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Zamień istniejące zapamiętane zapytanie o tej samej nazwie" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Nie nadpisuj tego zapytania spoza okna" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Separator" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Wywołaj ponownie zapytanie " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Tylko pokaż" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Lokalizacja pliku tekstowego" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "katalog serwera WWW do przesyłania plików" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7254,63 +7384,6 @@ msgstr "Nieprawidłowy identyfikator" msgid "Unknown Punctuation String" msgstr "Nieznany znak przestankowy" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Wyczyść" - -#: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" -msgid "Columns" -msgstr "Nazwy kolumn" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Pamiętaj zapytanie SQL" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Pozwól na dostęp wszystkim użytkownikom" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Zamień istniejące zapamiętane zapytanie o tej samej nazwie" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Nie nadpisuj tego zapytania spoza okna" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Separator" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Wywołaj ponownie zapytanie " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Tylko pokaż" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Lokalizacja pliku tekstowego" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "katalog serwera WWW do przesyłania plików" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7318,50 +7391,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy " -"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" -"sdokumentacji%s." - -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Brak szczegółowych informacji o tym mechanizmie składowania" - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s jest dostępny na tym serwerze MySQL." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "Mechanizm %s został wyłączony w tym serwerze MySQL." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Niewłaściwa baza danych" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Niewłaściwa nazwa tabeli" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabela %s ma nazwę zmienioną na %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " +"%sdokumentacji%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7411,8 +7442,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" -"sopisy transformacji%s" +"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij " +"%sopisy transformacji%s" #: libraries/tbl_properties.inc.php:144 msgid "Transformation options" @@ -7493,39 +7524,6 @@ msgstr "Definicja partycji" msgid "+ Add a value" msgstr "Dodaj nowy serwer" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" -"Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Podgląd niedostępny." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "użyj" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Nie znaleziono domyślnego motywu graficznego %s!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Nie znaleziono motywu graficznego %s!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Nie znaleziono ścieżki do motywu %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -7924,8 +7922,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%" -"s." +"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" +"%s." #: navigation.php:213 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8672,8 +8670,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " "MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " @@ -10288,8 +10286,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień " -"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" +"bezpieczeństwa — [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" "page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/" "a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli " "używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników." @@ -10300,9 +10298,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/pt.po b/po/pt.po index 39c3e930b7a1..ea3fcb0cff5c 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Pesquisar" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Pesquisar" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Executa" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "A base de dados %s foi criada." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Comentário da Base de Dados: " @@ -133,9 +133,9 @@ msgstr "Comentário da Base de Dados: " msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "Comentários da tabela" msgid "Column" msgstr "Coluna" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "Coluna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "Comentários" msgid "No" msgstr "Não" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,79 +262,79 @@ msgstr "Limpa Todas as Selecções" msgid "The database name is empty!" msgstr "O nome da base de dados está vazia!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "O nome da base de dados %s foi alterado para %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "A base de dados %s foi copiada para %s." -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Alterar o nome da base de dados para" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Comando" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Remover a Base de Dados" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "A base de dados %s foi eliminada." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Apagar a Base de Dados (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copiar a Base de Dados para" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Somente a estrutura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Apenas dados" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Criar a Base de Dados antes de copiar (CREATE DATABASE)" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Adicionar restrições (constraints)" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Mudar para a Base de Dados copiada" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,7 +343,7 @@ msgstr "Mudar para a Base de Dados copiada" msgid "Collation" msgstr "Agrupamento (Collation)" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -353,7 +352,7 @@ msgstr "" "As configurações do phpMyAdmin para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %shere%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Editar ou exporta o esquema relacional (schema)" @@ -499,102 +498,102 @@ msgstr "Comando SQL na base de dados %s:" msgid "Submit Query" msgstr "Executar Comando SQL" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "O seu comando SQL foi executado com sucesso" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "Permite criar novas tabelas." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Erro a Processar Pedido" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Não foram encontradas tabelas na base de dados" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "Importar" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "A tabela %s foi eliminada" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "A tabela %s foi eliminada" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Versão do servidor" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Sem bases de dados" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +#, fuzzy +msgid "Go to table" +msgstr "Sem bases de dados" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." msgstr "" #: libraries/import/csv.php:42 @@ -6141,42 +6319,6 @@ msgstr "Nome dos Campos" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Sem bases de dados" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "Sem bases de dados" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6199,40 +6341,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Nenhum indíce definido!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Único" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Quantidade" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "A chave primária foi eliminada" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "O Índice %s foi eliminado" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6245,27 +6353,6 @@ msgstr "Nenhum" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6512,21 +6599,6 @@ msgstr "" msgid "This format has no options" msgstr "Este formato não tem opções" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Sem tablelas" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "Tracked tables" -msgid "There are no recent tables" -msgstr "Tabelas em tracking" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "não está OK" @@ -6917,70 +6989,6 @@ msgstr "" msgid "Target database" msgstr "Pesquisar na Base de Dados" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Parece haver um erro no seu query SQL. A saída do servidor MySQL abaixo, " -"isto se existir alguma, também o poderá ajudar a diagnosticar o problema." - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Talvez tenha encontrado um bug no analizador (parser) do SQL. Analise o seu " -"query aprofundadamente, e verifique se as aspas estão correctas e não estão " -"desencontradas. Outra possibilidade de falha é o facto de estar a fazer o " -"upload de um ficheiro com outside binário, de de uma área de texto citada. " -"Pode também experimentar a sua query na interface da linha de comandos do " -"MySQL. A saída de erro do MySQL abaixo, isto se existir alguma, também o " -"poderá ajudar a diagnosticar o problema. Se continuar a ter problemas ou se " -"o analisador (parser) falhar onde a interface da linha de comandos tiver " -"sucesso, reduza por favor a entrada do query SQL até aquele que causa o " -"problema, e envie o relatório de bug com os dados do chunk na secção CUT " -"abaixo:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Aspa não fechada" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Identificador inválido" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Pontuação desconhecida" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -7038,53 +7046,75 @@ msgstr "Localização do arquivo de texto" msgid "web server upload directory" msgstr "Directoria no servidor web para fazer upload" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" +"Parece haver um erro no seu query SQL. A saída do servidor MySQL abaixo, " +"isto se existir alguma, também o poderá ajudar a diagnosticar o problema." -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" +"Talvez tenha encontrado um bug no analizador (parser) do SQL. Analise o seu " +"query aprofundadamente, e verifique se as aspas estão correctas e não estão " +"desencontradas. Outra possibilidade de falha é o facto de estar a fazer o " +"upload de um ficheiro com outside binário, de de uma área de texto citada. " +"Pode também experimentar a sua query na interface da linha de comandos do " +"MySQL. A saída de erro do MySQL abaixo, isto se existir alguma, também o " +"poderá ajudar a diagnosticar o problema. Se continuar a ter problemas ou se " +"o analisador (parser) falhar onde a interface da linha de comandos tiver " +"sucesso, reduza por favor a entrada do query SQL até aquele que causa o " +"problema, e envie o relatório de bug com os dados do chunk na secção CUT " +"abaixo:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" msgstr "" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" msgstr "" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Aspa não fechada" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabela %s renomeada para %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Identificador inválido" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Pontuação desconhecida" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -7214,38 +7244,6 @@ msgstr "" msgid "+ Add a value" msgstr "Acrescenta um utilizador" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8280,8 +8278,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " "tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " diff --git a/po/pt_BR.po b/po/pt_BR.po index 91c97c60a1f2..3b28f6ea1d23 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-15 13:55+0200\n" "Last-Translator: Jose Ivan Bezerra Vilarouca Filho \n" "Language-Team: brazilian_portuguese \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Procurar" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Executar" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Banco de dados %1$s foi criado." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Comentário do Banco de Dados: " @@ -132,9 +132,9 @@ msgstr "Comentário do Banco de Dados: " msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Comentários da tabela" msgid "Column" msgstr "Coluna" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Coluna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Comentários" msgid "No" msgstr "Não" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Desmarcar Todos" msgid "The database name is empty!" msgstr "O nome do Banco de Dados está em branco!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "O Banco de Dados %s foi renomeado para %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Banco de Dados %s copiado para %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Comando" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Remover Banco de Dados" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Banco de Dados %s foi eliminado." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Apagar o Banco de Dados (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copiar Banco de Dados para" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Dados apenas" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Adicionar restrições" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Mudar para o Banco de Dados copiado" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Mudar para o Banco de Dados copiado" msgid "Collation" msgstr "Collation" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Editar ou exportar esquema relacional" @@ -500,109 +499,109 @@ msgstr "Consulta SQL ao Banco de Dados %s:" msgid "Submit Query" msgstr "Enviar consulta SQL" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Seu comando SQL foi executado com sucesso" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Permitir executar stored routines." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou um conjunto vazio (ex. zero registros)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "As seguintes consultas foram executadas:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Erro no processamento da requisição" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "Nenhuma tabela encontrada no banco de dados" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "Importar arquivos" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Índice de servidor inválido: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabela %s foi eliminada" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "A tabela %1$s foi criada." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Criar relacionamento" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit server" msgid "Edit routine" msgstr "Editar servidor" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" +msgstr "" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Sem bases" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +#, fuzzy +msgid "Go to table" +msgstr "Sem bases" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" msgstr "" #: libraries/import/csv.php:40 @@ -6147,42 +6326,6 @@ msgstr "Nome das colunas" msgid "This plugin does not support compressed imports!" msgstr "Esse plugin não suporta importações comprimidas!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Sem bases" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "Sem bases" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6207,42 +6350,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Nenhum índice definido!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Único" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Pacote" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinalidade" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "A chave primária foi deletada" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Índice %s foi eliminado" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido " -"removida." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6255,27 +6362,6 @@ msgstr "Nenhum" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d linha afetada." -msgstr[1] "%1$d linha(s) afetadas." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d linhas excluída." -msgstr[1] "%1$d linhas(s) excluídas." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d linha inserida." -msgstr[1] "%1$d linha(s) inseridas." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6520,18 +6606,6 @@ msgstr "" msgid "This format has no options" msgstr "Esse formato não tem opções" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Não foi possível salvar a tabela recente" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "tabelas recentes" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Não existem tabelas recentes" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "não está OK" @@ -6926,6 +7000,63 @@ msgstr "" msgid "Target database" msgstr "Procurar no Banco de Dados" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Rodar consulta(s) SQL no servidor %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Fazer consulta SQL no Banco de Dados %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Limpar" + +#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Column names" +msgid "Columns" +msgstr "Nome das colunas" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Gravar essa consulta SQL" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Deixar qualquer usuário acessar esse marcador" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Substituir marcador de mesmo nome existente" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Não sobrescrever esta consulta fora desta janela" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Delimitadores" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Mostrar esta consulta SQL novamente " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Apenas visualizar" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Localização do arquivo texto" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "Servidor web subiu o diretório" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6989,63 +7120,6 @@ msgstr "Identificador inválido" msgid "Unknown Punctuation String" msgstr "String de pontuação desconhecida" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Rodar consulta(s) SQL no servidor %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Fazer consulta SQL no Banco de Dados %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Limpar" - -#: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" -msgid "Columns" -msgstr "Nome das colunas" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Gravar essa consulta SQL" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Deixar qualquer usuário acessar esse marcador" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Substituir marcador de mesmo nome existente" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Não sobrescrever esta consulta fora desta janela" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Delimitadores" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Mostrar esta consulta SQL novamente " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Apenas visualizar" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Localização do arquivo texto" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "Servidor web subiu o diretório" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7055,50 +7129,6 @@ msgstr "" "O Validador SQL não pode ser inicializado. Verifique se você instalou a " "extenção necessária do php conforme está escrito em %sdocumentation%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Não há nenhuma informação detalhada do status disponível para esta storage " -"engine." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s está disponível neste servidor MySQL." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s está desabilitado neste servidor MySQL." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Esse servidor MySQL não suporta o stored engine %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Banco de Dados inválido" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Nome de tabela inválida" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Erro ao renomear tabela %1$s para %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabela %s renomeada para %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Não foi possível salvar as preferências da tabela" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Tabela para estar vazia!" @@ -7229,38 +7259,6 @@ msgstr "Definição da PARTIÇÃO" msgid "+ Add a value" msgstr "Adicionar novo usuário" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Encontrado caminho inválido para imagens para o tema %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Nenhuma pré-visualização disponível." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "tome" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Tema padrão %s não encontrado!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s não encontrado!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Encontrado caminho inválido para o tema %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8383,8 +8381,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " "de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " diff --git a/po/ro.po b/po/ro.po index 76af888302d6..db1d88d4247f 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n" @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Caută" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Caută" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Execută" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " @@ -133,9 +133,9 @@ msgstr "Comentarii referitoare la baza de date: " msgid "Table comments" msgstr "Comentarii tabel" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -146,12 +146,12 @@ msgstr "Comentarii tabel" msgid "Column" msgstr "Denumirile coloanelor" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -161,9 +161,9 @@ msgstr "Denumirile coloanelor" msgid "Type" msgstr "Tip" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -201,13 +201,12 @@ msgstr "Trimitere la" msgid "Comments" msgstr "Comentarii" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -218,17 +217,17 @@ msgstr "Comentarii" msgid "No" msgstr "Nu" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -265,82 +264,82 @@ msgstr "Deselectează tot" msgid "The database name is empty!" msgstr "Cîmpul de denumire al bazei de date este gol!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza de date %s a fost redenumită în %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza de date %s a fost copiata la %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Comanda" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Redenumire bază de date în" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Baza de date %s a fost aruncată." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nu sînt baze de date" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Copiază baza de date" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Numai structura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Structura și date" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Numai date" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Adaugă constrângeri" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Schimbă la tabela copiată" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -349,7 +348,7 @@ msgstr "Schimbă la tabela copiată" msgid "Collation" msgstr "Interclasare" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -361,7 +360,7 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce ... %shere%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -515,14 +514,14 @@ msgstr "Comandă SQL pe baza de date %s:" msgid "Submit Query" msgstr "Trimite comanda" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Comanda dumneavoastră SQL a fost executată cu succes" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -530,94 +529,94 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Permite executarea rutinelor stocate." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL zice: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procese" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Nu s-a găsit nici un tabel în baza de date." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "Import fișiere" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Index de server nevalid: „%s”" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabelul %s a fost aruncat" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tabelul %1$s a fost creat." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Creare relație" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Regim de redactare" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Nu sînt baze de date" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +#, fuzzy +msgid "Go to table" +msgstr "Nu sînt baze de date" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 msgid "" "If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " @@ -6321,42 +6508,6 @@ msgstr "Denumirile coloanelor" msgid "This plugin does not support compressed imports!" msgstr "Modulul opțional nu suportă importuri comprimate!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Nu sînt baze de date" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "Nu sînt baze de date" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6381,40 +6532,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Index nu este definit!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unic" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Împachetat" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinalitate" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Cheia primară a fost aruncată" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indexul %s a fost aruncat" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6427,33 +6544,6 @@ msgstr "Nici unul(a)" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, fuzzy, php-format -#| msgid "%1$d row(s) affected." -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d rînd(uri) afectat(e)." -msgstr[1] "%1$d rînd(uri) afectat(e)." -msgstr[2] "%1$d rînd(uri) afectat(e)." - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "%1$d row(s) deleted." -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d rînd(uri) șters(e)." -msgstr[1] "%1$d rînd(uri) șters(e)." -msgstr[2] "%1$d rînd(uri) șters(e)." - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "%1$d row(s) inserted." -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d rînd(uri) inserat(e)." -msgstr[1] "%1$d rînd(uri) inserat(e)." -msgstr[2] "%1$d rînd(uri) inserat(e)." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6697,22 +6787,6 @@ msgstr "Personalizează cadrul principal" msgid "This format has no options" msgstr "Acest format nu are opțiuni" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Nu există tabele" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -msgid "There are no recent tables" -msgstr "Tabelele urmărite" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Nu este bine" @@ -7108,67 +7182,6 @@ msgstr "" msgid "Target database" msgstr "Caută în baza de date" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Pare sa fie o eroare in comanda SQL. Eroarea MySQL de mai jos, daca e " -"vreuna, poate sa te ajute la diagnosticarea problemei" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Exista o posibilitate de a fi gasit un BUG in parserul SQL. Verifica atent " -"inca o data comanda și verifica daca semnele specifice sunt corecte. O alta " -"posibilitate ar putea fi punerea unui fisier binar in afara zonei de text. " -"Poti incerca aceasta comanda și printr-o linie de comanda MySQL. Eroarea " -"MySQL de mai jos, daca e vreuna, poate sa te ajute la diagnosticarea " -"problemei. Daca in continuare ai probleme cu executarea comenzii, redu o " -"parte din comanda la aceea parte care cauzeaza problema și raporteaza acesta " -"ca un BUG in sectiunea DE TAIAT" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "DE TĂIAT - ÎNCEPUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "DE TĂIAT - SFÎRȘIT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "ÎNCEPUT RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "SFÎRȘIT BRUT" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Citare neînchisă" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Identificator nevalid" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Înșiruire de punctuație necunoscută" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7227,58 +7240,75 @@ msgstr "Locația fișierului textual" msgid "web server upload directory" msgstr "director de încărcare al serverului Web" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"Validatorul SQL nu poate fi inițializat. Verificați dacă e instalată " -"extesnsia necesară PHP, așa cum e descris în %sdocumentation%s." +"Pare sa fie o eroare in comanda SQL. Eroarea MySQL de mai jos, daca e " +"vreuna, poate sa te ajute la diagnosticarea problemei" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -"Nu există informații detaliate de stare disponibile pentru motorul de " -"stocare." +"Exista o posibilitate de a fi gasit un BUG in parserul SQL. Verifica atent " +"inca o data comanda și verifica daca semnele specifice sunt corecte. O alta " +"posibilitate ar putea fi punerea unui fisier binar in afara zonei de text. " +"Poti incerca aceasta comanda și printr-o linie de comanda MySQL. Eroarea " +"MySQL de mai jos, daca e vreuna, poate sa te ajute la diagnosticarea " +"problemei. Daca in continuare ai probleme cu executarea comenzii, redu o " +"parte din comanda la aceea parte care cauzeaza problema și raporteaza acesta " +"ca un BUG in sectiunea DE TAIAT" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s este disponibil pentru acest server MySQL." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "DE TĂIAT - ÎNCEPUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s a fost dezactivat pentru acest server MySQL." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "DE TĂIAT - SFÎRȘIT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Acest server MySQL nu susține motorul de stocare %s." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "ÎNCEPUT RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Bază de date nevalidă" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "SFÎRȘIT BRUT" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Denumire de tabel nevalidă" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Eroare la redenumirea tabelului %1$s în %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Citare neînchisă" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabelului %s i s-a dat un numele de %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Identificator nevalid" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Înșiruire de punctuație necunoscută" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"Validatorul SQL nu poate fi inițializat. Verificați dacă e instalată " +"extesnsia necesară PHP, așa cum e descris în %sdocumentation%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7411,38 +7441,6 @@ msgstr "Definiție PARTIȚIE" msgid "+ Add a value" msgstr "Adaugă un server nou" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "No valid image path for theme %s found!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Nici o previzualizare disponibilă." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "alege" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Tema implicită %s nu a fost găsită!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s nu a fost găsită!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Calea temei nu a fost găsită pentru tema %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8576,8 +8574,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " "privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " diff --git a/po/ru.po b/po/ru.po index 85dd9885a737..4da0b365f06e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-16 22:26+0200\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-24 21:23+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Поиск" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Поиск" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База данных %1$s была создана." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Комментарий к базе данных:" @@ -133,9 +133,9 @@ msgstr "Комментарий к базе данных:" msgid "Table comments" msgstr "Комментарий к таблице" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "Комментарий к таблице" msgid "Column" msgstr "Поле" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "Поле" msgid "Type" msgstr "Тип" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Связи" msgid "Comments" msgstr "Комментарии" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "Комментарии" msgid "No" msgstr "Нет" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,79 +262,79 @@ msgstr "Снять выделение" msgid "The database name is empty!" msgstr "Не указано имя базы данных!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "База данных %s переименована в %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "База данных %s была скопирована в %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Команда" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Удалить базу данных" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "База данных %s была удалена." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Удалить базу данных (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Скопировать базу данных в" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Только структура" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Структура и данные" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Только данные" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Добавить ограничения" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Переключиться на скопированную базу данных" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,7 +343,7 @@ msgstr "Переключиться на скопированную базу да msgid "Collation" msgstr "Сравнение" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -353,7 +352,7 @@ msgstr "" "Некоторые из расширенных возможностей phpMyAdmin недоступны. Для определения " "причины нажмите %sздесь%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Редакция или экспорт схемы связей" @@ -501,116 +500,107 @@ msgstr "SQL-запрос к базе данных %s:" msgid "Submit Query" msgstr "Выполнить запрос" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL-запрос был успешно выполнен" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Последним выражением в процедуре была затронута %d строка" +msgstr[1] "Последним выражением в процедуре были затронуты %d строки" +msgstr[2] "Последним выражением в процедуре было затронуто %d строк" -#: db_routines.php:165 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." +#: db_routines.php:167 +#, php-format msgid "Execution results of routine %s" -msgstr "Разрешает выполнение хранимых процедур." +msgstr "Результаты выполнения процедуры %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 -#, fuzzy, php-format -#| msgid "The following queries have been executed:" +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 +#, php-format msgid "The following query has failed: \"%s\"" -msgstr "Выполнены следующие запросы:" +msgstr "Данный запрос не был выполнен: \"%s\"" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Ответ MySQL: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 -#, fuzzy -#| msgid "Error in Processing Request" +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "Ошибка при обработке запроса" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 -#, fuzzy, php-format -#| msgid "No tables found in database" +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 +#, php-format msgid "No routine with name %1$s found in database %2$s" -msgstr "Таблиц в базе данных не найдено" +msgstr "В базе данных %2$s процедура с именем %1$s не найдена" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" -msgstr "" +msgstr "Выполнить процедуру" -#: db_routines.php:259 db_routines.php:263 -#, fuzzy, php-format -#| msgid "Export defaults" +#: db_routines.php:261 db_routines.php:265 +#, php-format msgid "Export of routine %s" -msgstr "Экспорт" +msgstr "Экспорт процедуры %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 -#, fuzzy, php-format -#| msgid "Invalid server index: %s" +#: db_routines.php:290 libraries/db_routines.lib.php:960 +#, php-format msgid "Invalid routine type: \"%s\"" -msgstr "Неверный индекс сервера: %s" +msgstr "Ошибочный тип процедуры: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." -msgstr "" +msgstr "Невозможно восстановить удаленную процедуру." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" -msgstr "" +msgstr "Сохраненный запрос был:" -#: db_routines.php:314 -#, fuzzy, php-format -#| msgid "Column %s has been dropped" +#: db_routines.php:316 +#, php-format msgid "Routine %1$s has been modified." -msgstr "Поле %s было удалено" +msgstr "Была изменена процедура %1$s." -#: db_routines.php:327 -#, fuzzy, php-format -#| msgid "Table %1$s has been created." +#: db_routines.php:329 +#, php-format msgid "Routine %1$s has been created." -msgstr "Таблица %1$s была создана." +msgstr "Была создана процедура %1$s." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" -msgstr "" +msgstr "При обработке вашего запроса были обнаружены ошибки:" -#: db_routines.php:379 -#, fuzzy -#| msgid "Create relation" +#: db_routines.php:381 msgid "Create routine" -msgstr "Создать связь" +msgstr "Создать процедуру" -#: db_routines.php:383 -#, fuzzy -#| msgid "Edit mode" +#: db_routines.php:385 msgid "Edit routine" -msgstr "Редакция" +msgstr "Изменить процедуру" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail! Please use the improved 'mysqli' extension to avoid any problems." msgstr "" +"Вы используете устаревшее 'mysql' расширение PHP, которое не позволяет " +"выполнение множественных запросов. Выполнение некоторых хранимых процедур " +"может привести к ошибке! Пожалуйста, для избежания проблем, используйте " +"улучшенное 'mysqli' расширение." #: db_search.php:54 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 @@ -684,10 +674,8 @@ msgid "Search in database" msgstr "Поиск в базе данных" #: db_search.php:300 -#, fuzzy -#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" -msgstr "Слово(а) или значение(я) для поиска (групповой символ: \"%\"):" +msgstr "Слова или значения для поиска (групповой символ: \"%\"):" #: db_search.php:305 msgid "Find:" @@ -737,8 +725,8 @@ msgstr "Слежение выключено." #: db_structure.php:372 libraries/display_tbl.lib.php:2235 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." @@ -807,8 +795,8 @@ msgstr "Версия для печати" msgid "Empty" msgstr "Очистить" -#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956 -#: libraries/common.lib.php:2957 libraries/Index.class.php:490 +#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490 +#: libraries/common.lib.php:2956 libraries/common.lib.php:2957 #: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154 #: tbl_structure.php:603 msgid "Drop" @@ -881,9 +869,9 @@ msgstr "Обновлён" msgid "Status" msgstr "Состояние" -#: db_tracking.php:90 libraries/db_events.inc.php:68 -#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44 -#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442 +#: db_tracking.php:90 libraries/Index.class.php:442 +#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215 +#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76 #: server_databases.php:191 server_privileges.php:1612 #: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214 msgid "Action" @@ -977,8 +965,8 @@ msgstr "Дамп был сохранен в файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." @@ -1160,11 +1148,11 @@ msgstr "Удаление выбранных пользователей" msgid "Close" msgstr "Закрыть" -#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594 -#: libraries/common.lib.php:1144 libraries/common.lib.php:2960 -#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150 -#: libraries/import.lib.php:1174 libraries/Index.class.php:468 +#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468 +#: libraries/common.lib.php:594 libraries/common.lib.php:1144 +#: libraries/common.lib.php:2960 libraries/common.lib.php:2961 +#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 #: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137 msgid "Edit" msgstr "Изменить" @@ -1706,6 +1694,220 @@ msgstr "Минута" msgid "Second" msgstr "Секунда" +#: libraries/Config.class.php:1190 +msgid "Font size" +msgstr "Размер шрифта" + +#: libraries/File.class.php:310 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" +"Размер загружаемого файла превышает значение директивы upload_max_filesize " +"установленное в конфигурационном файле PHP (php.ini)." + +#: libraries/File.class.php:313 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" +"Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, " +"определенной в HTML форме." + +#: libraries/File.class.php:316 +msgid "The uploaded file was only partially uploaded." +msgstr "Загруженный файл был загружен только частично." + +#: libraries/File.class.php:319 +msgid "Missing a temporary folder." +msgstr "Не найден каталог для хранения временных файлов." + +#: libraries/File.class.php:322 +msgid "Failed to write file to disk." +msgstr "Ошибка при попытке записи файла на диск." + +#: libraries/File.class.php:325 +msgid "File upload stopped by extension." +msgstr "Загрузка файла остановлена из-за расширения." + +#: libraries/File.class.php:328 +msgid "Unknown error in file upload." +msgstr "При время загрузке файла произошла неизвестная ошибка." + +#: libraries/File.class.php:559 +msgid "" +"Error moving the uploaded file, see [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" +msgstr "" +"Ошибка при перемещении загруженного файла, смотрите [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" + +#: libraries/Index.class.php:430 tbl_relation.php:526 +msgid "No index defined!" +msgstr "Индекс не определен!" + +#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40 +#: tbl_tracking.php:309 +msgid "Indexes" +msgstr "Индексы" + +#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 +#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 +#: tbl_tracking.php:315 +msgid "Unique" +msgstr "Уникальный" + +#: libraries/Index.class.php:447 tbl_tracking.php:316 +msgid "Packed" +msgstr "Упакован" + +#: libraries/Index.class.php:449 tbl_tracking.php:318 +msgid "Cardinality" +msgstr "Уникальных элементов" + +#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777 +#: tbl_tracking.php:272 tbl_tracking.php:321 +msgid "Comment" +msgstr "Комментарий" + +#: libraries/Index.class.php:474 +msgid "The primary key has been dropped" +msgstr "Первичный ключ был удален" + +#: libraries/Index.class.php:478 +#, php-format +msgid "Index %s has been dropped" +msgstr "Индекс %s был удален" + +#: libraries/Index.class.php:582 +#, php-format +msgid "" +"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " +"removed." +msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." + +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177 +#: libraries/server_links.inc.php:43 server_databases.php:100 +#: server_privileges.php:1740 +msgid "Databases" +msgstr "Базы данных" + +#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308 +#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883 +#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60 +msgid "Error" +msgstr "Ошибка" + +#: libraries/Message.class.php:260 +#, php-format +msgid "%1$d row affected." +msgid_plural "%1$d rows affected." +msgstr[0] "Затронута %1$d строка." +msgstr[1] "Затронуто %1$d строки." +msgstr[2] "Затронуто %1$d строк." + +#: libraries/Message.class.php:279 +#, php-format +msgid "%1$d row deleted." +msgid_plural "%1$d rows deleted." +msgstr[0] "Удалена %1$d строка." +msgstr[1] "Удалено %1$d строки." +msgstr[2] "Удалено %1$d строк." + +#: libraries/Message.class.php:298 +#, php-format +msgid "%1$d row inserted." +msgid_plural "%1$d rows inserted." +msgstr[0] "Добавлена %1$d строка." +msgstr[1] "Добавлено %1$d строки." +msgstr[2] "Добавлено %1$d строк." + +#: libraries/RecentTable.class.php:114 +msgid "Could not save recent table" +msgstr "Не удалось сохранить последнюю таблицу" + +#: libraries/RecentTable.class.php:149 +msgid "Recent tables" +msgstr "Недавние таблицы" + +#: libraries/RecentTable.class.php:155 +msgid "There are no recent tables" +msgstr "Отсутствуют недавние таблицы" + +#: libraries/StorageEngine.class.php:195 +msgid "" +"There is no detailed status information available for this storage engine." +msgstr "" +"Дополнительная информация о состоянии данного типа таблиц - отсутствует." + +#: libraries/StorageEngine.class.php:355 +#, php-format +msgid "%s is available on this MySQL server." +msgstr "Данный MySQL-сервер поддерживает таблицы типа %s." + +#: libraries/StorageEngine.class.php:358 +#, php-format +msgid "%s has been disabled for this MySQL server." +msgstr "Тип таблиц %s был отключен на данном MySQL сервере." + +#: libraries/StorageEngine.class.php:362 +#, php-format +msgid "This MySQL server does not support the %s storage engine." +msgstr "Данный сервер MySQL не поддерживает тип таблиц %s." + +#: libraries/Table.class.php:1027 +msgid "Invalid database" +msgstr "Некорректная база данных" + +#: libraries/Table.class.php:1041 tbl_get_field.php:25 +msgid "Invalid table name" +msgstr "Неправильное имя таблицы" + +#: libraries/Table.class.php:1056 +#, php-format +msgid "Error renaming table %1$s to %2$s" +msgstr "Ошибка при переименовании таблицы %1$s в %2$s" + +#: libraries/Table.class.php:1139 +#, php-format +msgid "Table %s has been renamed to %s" +msgstr "Таблица %s была переименована в %s" + +#: libraries/Table.class.php:1272 +msgid "Could not save table UI preferences" +msgstr "Не получилось сохранить настройки интерфейса таблицы" + +#: libraries/Theme.class.php:160 +#, php-format +msgid "No valid image path for theme %s found!" +msgstr "Не найден правильный путь к изображениям для темы %s!" + +#: libraries/Theme.class.php:380 +msgid "No preview available." +msgstr "Предпросмотр не доступен." + +#: libraries/Theme.class.php:383 +msgid "take it" +msgstr "Применить" + +#: libraries/Theme_Manager.class.php:109 +#, php-format +msgid "Default theme %s not found!" +msgstr "Тема по-умолчанию %s не найдена!" + +#: libraries/Theme_Manager.class.php:147 +#, php-format +msgid "Theme %s not found!" +msgstr "Тема %s не найдена!" + +#: libraries/Theme_Manager.class.php:215 +#, php-format +msgid "Theme path not found for theme %s!" +msgstr "Путь к файлам темы %s не найден!" + +#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 +msgid "Theme" +msgstr "" + #: libraries/auth/config.auth.lib.php:76 msgid "Cannot connect: invalid settings." msgstr "Соединение невозможно! Неверные настройки." @@ -1719,8 +1921,8 @@ msgstr "Добро пожаловать в %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." @@ -1826,14 +2028,6 @@ msgstr "Ошибка PBMS" msgid "PBMS connection failed:" msgstr "Ошибка подключения к PBMS:" -#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314 -#: libraries/common.lib.php:561 libraries/core.lib.php:232 -#: libraries/import.lib.php:136 libraries/Message.class.php:205 -#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287 -#: view_operations.php:60 -msgid "Error" -msgstr "Ошибка" - #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" msgstr "Ошибка получения информации о BLOB данных от PBMS:" @@ -1886,11 +2080,6 @@ msgstr "Таблицы" msgid "Data" msgstr "Данные" -#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435 -#: tbl_tracking.php:309 -msgid "Indexes" -msgstr "Индексы" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:818 msgid "Overhead" @@ -2175,9 +2364,77 @@ msgstr "Файлы для загрузки отсутствуют" msgid "Execute" msgstr "" -#: libraries/Config.class.php:1190 -msgid "Font size" -msgstr "Размер шрифта" +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 +msgid "Both" +msgstr "Оба" + +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "Нигде" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "Налево" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "Направо" + +#: libraries/config.values.php:75 +msgid "Open" +msgstr "Открыт" + +#: libraries/config.values.php:75 +msgid "Closed" +msgstr "Закрыт" + +#: libraries/config.values.php:96 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:122 libraries/export/texytext.php:24 +#: libraries/import.lib.php:1172 +msgid "structure" +msgstr "структура" + +#: libraries/config.values.php:97 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:123 libraries/export/texytext.php:24 +msgid "data" +msgstr "данные" + +#: libraries/config.values.php:98 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:124 libraries/export/texytext.php:24 +msgid "structure and data" +msgstr "структура и данные" + +#: libraries/config.values.php:100 +msgid "Quick - display only the minimal options to configure" +msgstr "Быстро - отображать минимальный набор параметров" + +#: libraries/config.values.php:101 +msgid "Custom - display all possible options to configure" +msgstr "По выбору - отображать все возможные параметры" + +#: libraries/config.values.php:102 +msgid "Custom - like above, but without the quick/custom choice" +msgstr "По выбору - как выше, но без выбора быстро/по выбору" + +#: libraries/config.values.php:120 +msgid "complete inserts" +msgstr "полная вставка" + +#: libraries/config.values.php:121 +msgid "extended inserts" +msgstr "расширенная вставка" + +#: libraries/config.values.php:122 +msgid "both of the above" +msgstr "оба верхних варианта" + +#: libraries/config.values.php:123 +msgid "neither of the above" +msgstr "иначе, чем в вариантах выше" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 @@ -2841,12 +3098,6 @@ msgstr "Установите директории импорта и экспор msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430 -#: libraries/server_links.inc.php:43 server_databases.php:100 -#: server_privileges.php:1740 -msgid "Databases" -msgstr "Базы данных" - #: libraries/config/messages.inc.php:178 msgid "Databases display options" msgstr "Параметры отображения списка баз данных" @@ -4499,78 +4750,6 @@ msgstr "" msgid "Incorrect IP address: %s" msgstr "Некорректно введен IP адрес: %s" -#: libraries/config.values.php:45 libraries/config.values.php:47 -#: libraries/config.values.php:51 -msgid "Both" -msgstr "Оба" - -#: libraries/config.values.php:47 -msgid "Nowhere" -msgstr "Нигде" - -#: libraries/config.values.php:47 -msgid "Left" -msgstr "Налево" - -#: libraries/config.values.php:47 -msgid "Right" -msgstr "Направо" - -#: libraries/config.values.php:75 -msgid "Open" -msgstr "Открыт" - -#: libraries/config.values.php:75 -msgid "Closed" -msgstr "Закрыт" - -#: libraries/config.values.php:96 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:122 libraries/export/texytext.php:24 -#: libraries/import.lib.php:1172 -msgid "structure" -msgstr "структура" - -#: libraries/config.values.php:97 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:123 libraries/export/texytext.php:24 -msgid "data" -msgstr "данные" - -#: libraries/config.values.php:98 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:124 libraries/export/texytext.php:24 -msgid "structure and data" -msgstr "структура и данные" - -#: libraries/config.values.php:100 -msgid "Quick - display only the minimal options to configure" -msgstr "Быстро - отображать минимальный набор параметров" - -#: libraries/config.values.php:101 -msgid "Custom - display all possible options to configure" -msgstr "По выбору - отображать все возможные параметры" - -#: libraries/config.values.php:102 -msgid "Custom - like above, but without the quick/custom choice" -msgstr "По выбору - как выше, но без выбора быстро/по выбору" - -#: libraries/config.values.php:120 -msgid "complete inserts" -msgstr "полная вставка" - -#: libraries/config.values.php:121 -msgid "extended inserts" -msgstr "расширенная вставка" - -#: libraries/config.values.php:122 -msgid "both of the above" -msgstr "оба верхних варианта" - -#: libraries/config.values.php:123 -msgid "neither of the above" -msgstr "иначе, чем в вариантах выше" - #. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. #: libraries/core.lib.php:264 msgctxt "PHP documentation language" @@ -4641,26 +4820,6 @@ msgstr "" msgid "Add an event" msgstr "Добавить новый сервер" -#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 -msgid "Connection for controluser as defined in your configuration failed." -msgstr "" -"Не удалось установить подключение для пользователя указанного в директиве " -"controluser, с помощью параметров определенных в конфигурационном файле " -"config.inc.php." - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 -#: libraries/dbi/mysqli.dbi.lib.php:395 -msgid "The server is not responding" -msgstr "Сервер не отвечает" - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(либо сокет локального MySQL-сервера некорректно настроен)" - -#: libraries/dbi/mysql.dbi.lib.php:346 -msgid "Details..." -msgstr "Детали..." - #: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 #: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" @@ -4735,9 +4894,9 @@ msgstr "Длина/значения" #: libraries/export/php_array.php:29 libraries/export/sql.php:83 #: libraries/export/texytext.php:31 libraries/export/xls.php:29 #: libraries/export/xlsx.php:29 libraries/export/xml.php:25 -#: libraries/export/yaml.php:30 libraries/import/csv.php:33 +#: libraries/export/yaml.php:30 libraries/import.lib.php:1145 +#: libraries/import.lib.php:1167 libraries/import/csv.php:33 #: libraries/import/docsql.php:35 libraries/import/ldi.php:49 -#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/ods.php:32 libraries/import/sql.php:20 #: libraries/import/xls.php:28 libraries/import/xlsx.php:28 #: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889 @@ -4796,11 +4955,6 @@ msgstr "Безопасность" msgid "SQL data access" msgstr "" -#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452 -#: tbl_tracking.php:272 tbl_tracking.php:321 -msgid "Comment" -msgstr "Комментарий" - #: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842 #, fuzzy #| msgid "Routines" @@ -4867,6 +5021,26 @@ msgstr "" "Может быть приблизительно. Смотрите [a@./Documentation." "html#faq3_11@Documentation]FAQ 3.11[/a]" +#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 +msgid "Connection for controluser as defined in your configuration failed." +msgstr "" +"Не удалось установить подключение для пользователя указанного в директиве " +"controluser, с помощью параметров определенных в конфигурационном файле " +"config.inc.php." + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 +#: libraries/dbi/mysqli.dbi.lib.php:395 +msgid "The server is not responding" +msgstr "Сервер не отвечает" + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(либо сокет локального MySQL-сервера некорректно настроен)" + +#: libraries/dbi/mysql.dbi.lib.php:346 +msgid "Details..." +msgstr "Детали..." + #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 msgid "Change password" @@ -5007,8 +5181,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -5789,8 +5963,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." @@ -6099,48 +6273,6 @@ msgstr "Представления" msgid "Export contents" msgstr "Экспортировать содержимое" -#: libraries/File.class.php:310 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" -"Размер загружаемого файла превышает значение директивы upload_max_filesize " -"установленное в конфигурационном файле PHP (php.ini)." - -#: libraries/File.class.php:313 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" -"Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, " -"определенной в HTML форме." - -#: libraries/File.class.php:316 -msgid "The uploaded file was only partially uploaded." -msgstr "Загруженный файл был загружен только частично." - -#: libraries/File.class.php:319 -msgid "Missing a temporary folder." -msgstr "Не найден каталог для хранения временных файлов." - -#: libraries/File.class.php:322 -msgid "Failed to write file to disk." -msgstr "Ошибка при попытке записи файла на диск." - -#: libraries/File.class.php:325 -msgid "File upload stopped by extension." -msgstr "Загрузка файла остановлена из-за расширения." - -#: libraries/File.class.php:328 -msgid "Unknown error in file upload." -msgstr "При время загрузке файла произошла неизвестная ошибка." - -#: libraries/File.class.php:559 -msgid "" -"Error moving the uploaded file, see [a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "" -"Ошибка при перемещении загруженного файла, смотрите [a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a]" - #: libraries/footer.inc.php:188 libraries/footer.inc.php:191 #: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" @@ -6160,21 +6292,55 @@ msgstr "Результат SQL-запроса" msgid "Generated by" msgstr "Создан" -#: libraries/import/csv.php:38 libraries/import/ods.php:26 -#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +#: libraries/import.lib.php:1141 msgid "" -"The first line of the file contains the table column names (if this is " -"unchecked, the first line will become part of the data)" -msgstr "" -"Первая строка файла содержит имена полей таблицы (если данный параметр не " -"выбран, то первая строка будет частью данных)" +"The following structures have either been created or altered. Here you can:" +msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Просмотреть детали структуры нажав на её имя" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." -msgstr "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\"" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Отредактировать структуру перейдя по ссылке \"Структура\"" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Перейти к базе данных" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "настройки" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Перейти к таблице" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Перейти к представлению (VIEW)" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"Первая строка файла содержит имена полей таблицы (если данный параметр не " +"выбран, то первая строка будет частью данных)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" "Если данные в строках файла расположены не в том же порядке, как в базе " "данных, введите здесь имена полей в соответствующей последовательности. " "Имена полей разделяются запятыми и не должны быть заключены в кавычки." @@ -6226,40 +6392,6 @@ msgstr "Названия столбцов" msgid "This plugin does not support compressed imports!" msgstr "Этот модуль не поддерживает импорт сжатых данных!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Просмотреть детали структуры нажав на её имя" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\"" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Отредактировать структуру перейдя по ссылке \"Структура\"" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Перейти к базе данных" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "настройки" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Перейти к таблице" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Перейти к представлению (VIEW)" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6286,40 +6418,6 @@ msgstr "" "Выбранный XML файл некорректен, либо неполон. Проверьте возможные ошибки и " "попробуйте ещё раз." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Индекс не определен!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Уникальный" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Упакован" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Уникальных элементов" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Первичный ключ был удален" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Индекс %s был удален" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6330,30 +6428,6 @@ msgstr "Нет" msgid "Convert to Kana" msgstr "Конвертировать в Кану" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Затронута %1$d строка." -msgstr[1] "Затронуто %1$d строки." -msgstr[2] "Затронуто %1$d строк." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Удалена %1$d строка." -msgstr[1] "Удалено %1$d строки." -msgstr[2] "Удалено %1$d строк." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Добавлена %1$d строка." -msgstr[1] "Добавлено %1$d строки." -msgstr[2] "Добавлено %1$d строк." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "От" @@ -6592,18 +6666,6 @@ msgstr "Обновить фрейм навигации" msgid "This format has no options" msgstr "Для этого формата нет настраиваемых параметров" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Не удалось сохранить последнюю таблицу" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Недавние таблицы" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Отсутствуют недавние таблицы" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Не готово" @@ -6987,6 +7049,61 @@ msgstr "Различие" msgid "Target database" msgstr "Целевая база данных" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Выполнить SQL-запрос(ы) на сервере %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Выполнить SQL-запрос(ы) к базе данных %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Очистить" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Столбцы" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Создание закладки" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Доступна для всех пользователей" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Заменить существующую с таким же именем" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Заблокировать содержимое окна запросов" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Разделитель" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr "Показать данный запрос снова" + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Просмотр" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Выбор файла" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "Из каталога загрузки" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7049,61 +7166,6 @@ msgstr "Неправильный идентификатор" msgid "Unknown Punctuation String" msgstr "Неизвестная пунктуация" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Выполнить SQL-запрос(ы) на сервере %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Выполнить SQL-запрос(ы) к базе данных %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Очистить" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Столбцы" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Создание закладки" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Доступна для всех пользователей" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Заменить существующую с таким же именем" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Заблокировать содержимое окна запросов" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Разделитель" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr "Показать данный запрос снова" - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Просмотр" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Выбор файла" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "Из каталога загрузки" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7113,49 +7175,6 @@ msgstr "" "Проверка синтаксиса SQL не осуществима. Проверьте, установлены ли " "необходимые модули расширений для PHP, описанные в %sдокументации%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Дополнительная информация о состоянии данного типа таблиц - отсутствует." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "Данный MySQL-сервер поддерживает таблицы типа %s." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "Тип таблиц %s был отключен на данном MySQL сервере." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Данный сервер MySQL не поддерживает тип таблиц %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Некорректная база данных" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Неправильное имя таблицы" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Ошибка при переименовании таблицы %1$s в %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Таблица %s была переименована в %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Не получилось сохранить настройки интерфейса таблицы" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Таблица - пуста!" @@ -7276,38 +7295,6 @@ msgstr "Определение разделов (PARTITION)" msgid "+ Add a value" msgstr "+ Добавить новое значение" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Не найден правильный путь к изображениям для темы %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Предпросмотр не доступен." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "Применить" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Тема по-умолчанию %s не найдена!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Тема %s не найдена!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Путь к файлам темы %s не найден!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8358,8 +8345,8 @@ msgstr "Удалить базы данных, имена которых совп msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " "непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " @@ -9948,8 +9935,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"При необходимости используйте дополнительные настройки безопасности - %" -"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " +"При необходимости используйте дополнительные настройки безопасности - " +"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " "защита по IP может быть ненадежной, если ваш IP не является выделенным и " "кроме вас принадлежит тысячам пользователей того же Интернет Провайдера." @@ -10715,8 +10702,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %" -"s." +"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге " +"%s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/si.po b/po/si.po index 5c7ed6b1e7b2..916d88a1bc8c 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-04 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" +"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "සෙවීම" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "සෙවීම" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "යන්න" @@ -119,7 +119,7 @@ msgstr "%s ගොනුව මෙම පද්ධතියේ නොමැත. msgid "Database %1$s has been created." msgstr "%1$s දත්තගබඩාව සාදන ලදි." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " @@ -129,9 +129,9 @@ msgstr "දත්තගබඩා විස්තර: " msgid "Table comments" msgstr "වගු විස්තර" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -140,12 +140,12 @@ msgstr "වගු විස්තර" msgid "Column" msgstr "තීර" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -155,9 +155,9 @@ msgstr "තීර" msgid "Type" msgstr "වර්ගය" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -195,13 +195,12 @@ msgstr "Links to" msgid "Comments" msgstr "විස්තරය" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -212,17 +211,17 @@ msgstr "විස්තරය" msgid "No" msgstr "නැත" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -259,79 +258,79 @@ msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන msgid "The database name is empty!" msgstr "දත්තගබඩා නම හිස්ව පවතී!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "%s දත්තගබඩාව %s බවට නම වෙනස් කරන ලදි" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කරන ලදි" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "විධානය" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "දත්තගබඩාව ඉවත් කරන්න" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "%s දත්තගබඩාව හලන ලදි." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "දත්තගබඩාව හලන්න. (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "සැකිල්ල පමණයි" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "දත්ත පමණයි" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙත මාරු වන්න" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -340,7 +339,7 @@ msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙ msgid "Collation" msgstr "Collation" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -349,7 +348,7 @@ msgstr "" "phpMyAdmin හි configuration storage අක්‍රිය කර ඇත. ඇයිදැයි සොයා බැලීමට %sමෙතන%s ක්ලික් " "කරන්න." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න" @@ -495,109 +494,109 @@ msgstr "%s දත්තගබඩාව මත SQL විමසුම:" msgid "Submit Query" msgstr "විමසුම ඉදිරිපත් කරන්න" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "පහත විමසුම් ක්‍රියාත්මක කරන ලදි:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL said: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "අපනයන පෙරනිමි" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "අවලංගු සේවාදායක සුචිය: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "%s තීරුව හලන ලදි" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s වගුව සාදන ලදි." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "සර්වරයේ සංස්කරණය" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "සංස්කරණ ප්‍රකාරය" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.(මෙය තෝරා නොගතහොත් පළමු පේලිය දත්ත සේ ගැනේ)" -"" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import/csv.php:42 -msgid "Column names: " -msgstr "තීර නම්: " +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" -#: libraries/import/csv.php:62 libraries/import/csv.php:75 -#: libraries/import/csv.php:80 libraries/import/csv.php:85 -#, php-format +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "දත්තගබඩා නොමැත" + +# සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "සිටුවම්" + +#: libraries/import.lib.php:1169 +#, fuzzy +msgid "Go to table" +msgstr "දත්තගබඩා නොමැත" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.(මෙය තෝරා නොගතහොත් පළමු පේලිය දත්ත සේ ගැනේ)" +"" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +msgid "Column names: " +msgstr "තීර නම්: " + +#: libraries/import/csv.php:62 libraries/import/csv.php:75 +#: libraries/import/csv.php:80 libraries/import/csv.php:85 +#, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Invalid parameter for CSV import: %s" @@ -5997,43 +6174,6 @@ msgstr "තීර නම්" msgid "This plugin does not support compressed imports!" msgstr "This plugin does not support compressed imports!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "දත්තගබඩා නොමැත" - -# සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "සිටුවම්" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "දත්තගබඩා නොමැත" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "ප්‍රතිශත පූර්ණ සංඛ්‍යා ලෙස ආනයනය කරන්න (උදා. 12.00%, 12 ලෙස)" @@ -6056,40 +6196,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "No index defined!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "අනන්‍ය" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "අහුරන ලද" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinality" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "ප්‍රාථමික මූලය හලන ලදි" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "%s සූචිය හලන ලදි" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6102,27 +6208,6 @@ msgstr "කිසිවක් නැත" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "පේළියකට බලපෑවේය." -msgstr[1] "පේළි %1$dකට බලපෑවේය." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "පේළි %1$d ක් ඉවත් කෙරුනි." -msgstr[1] "පේළි %1$d ක් ඉවත් කෙරුනි." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "පේළි %1$d ක් ඇතුල් කෙරුනි." -msgstr[1] "පේළි %1$d ක් ඇතුල් කෙරුනි." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6365,18 +6450,6 @@ msgstr "" msgid "This format has no options" msgstr "මෙම ආකෘතියේ ආකෘති-විශේෂී තෝරා ගැනීම් කිසිවක් නැත" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "නූතන වගු සුරැකීම අසමත් විය" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "නූතන වගු" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "නූතන වගු කිසිවක් නොමැත" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "OK නැත" @@ -6760,68 +6833,6 @@ msgstr "" msgid "Target database" msgstr "දත්තගබඩාවේ සොයන්න" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "නොවසන ලද උද්ධරනය" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "වලංගු නොවන හඳුන්වනය" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "නොදන්නා විරාම අකුරු වැල" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6880,57 +6891,76 @@ msgstr "පාඨ ගොනුවෙහි පිහිටුම" msgid "web server upload directory" msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s is available on this MySQL server." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s has been disabled for this MySQL server." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "This MySQL server does not support the %s storage engine." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "වලංගු නොවන දත්තගබඩාව" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "වලංගු නොවන වගු නම" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "නොවසන ලද උද්ධරනය" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "%s වගුව %s බවට නම වෙනස් කරන ලදි" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "වලංගු නොවන හඳුන්වනය" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "නොදන්නා විරාම අකුරු වැල" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." +msgstr "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7060,38 +7090,6 @@ msgstr "" msgid "+ Add a value" msgstr "+ නව භාවිතා කරන්නෙක් එක් කරන්න" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "No valid image path for theme %s found!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "No preview available." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "take it" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "‍%s පෙරනිමි තේමාව සොයාගැනීමට නොමැත!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Theme %s not found!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Theme path not found for theme %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -7259,8 +7257,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %" -"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." +"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා " +"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." #: libraries/user_preferences.lib.php:142 msgid "Could not save configuration" @@ -8147,8 +8145,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම් msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. " "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " diff --git a/po/sk.po b/po/sk.po index cb8583f85a09..de9b0bd16a1f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-03 14:53+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Hľadať" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Hľadať" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Vykonaj" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Komentár k databáze: " @@ -132,9 +132,9 @@ msgstr "Komentár k databáze: " msgid "Table comments" msgstr "Komentár k tabuľke" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Komentár k tabuľke" msgid "Column" msgstr "Stĺpce" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Stĺpce" msgid "Type" msgstr "Typ" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Linkovať na" msgid "Comments" msgstr "Komentáre" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Komentáre" msgid "No" msgstr "Nie" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Odznačiť všetko" msgid "The database name is empty!" msgstr "Meno databázy je prázdne!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databáza %s bola premenovaná na %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Databáza %s bola skopírovaná na %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Príkaz" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Odstrániť databázu" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Databáza %s bola zmazaná." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Odstrániť databázu (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Skopírovať databázu na" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Iba štruktúru" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Štruktúru a dáta" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Iba dáta" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Pridať obmedzenia" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Prepnúť na skopírovanú databázu" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Prepnúť na skopírovanú databázu" msgid "Collation" msgstr "Zotriedenie" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "Konfiguračná pamäť phpMyAdmina bola deaktivovaná. Ak chcete zistiť prečo, " "kliknite %ssem%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Upraviť alebo exportovať relačnú schému" @@ -499,14 +498,14 @@ msgstr "SQL dopyt v databáze %s:" msgid "Submit Query" msgstr "Odošli dopyt" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL dopyt bol úspešne vykonaný" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -514,95 +513,95 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Umožňuje spúšťať uložené procedúry." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL hlási: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Chyba pri spracovanie požiadavku" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "V tejto databáze neboli nájdené žiadne tabuľky" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "Východzie nastavenia exportu" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Chybný index servera: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Stĺpec %s bol odstránený" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tabuľka %1$s bola vytvorená." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Vytvoriť relaciu" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Režim úprav" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "" +"The following structures have either been created or altered. Here you can:" +msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." -msgstr "" +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov" -#: libraries/import/csv.php:42 -msgid "Column names: " -msgstr "Názvy stĺpcov: " +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\"" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Prejsť do databázy" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "nastavenia" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Prejsť do tabuľky" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Prejsť na Prejsť na pohľad" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +msgid "Column names: " +msgstr "Názvy stĺpcov: " #: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 @@ -6078,40 +6261,6 @@ msgstr "Názvy stĺpcov" msgid "This plugin does not support compressed imports!" msgstr "Tento plug-in nepodporuje import komprimovaných súborov!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\"" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Prejsť do databázy" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "nastavenia" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Prejsť do tabuľky" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Prejsť na Prejsť na pohľad" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6134,42 +6283,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Nebol definovaný žiadny index!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unikátny" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Zabalené" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Mohutnosť" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primárny kľúč bol zrušený" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Index pre %s bol odstránený" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne " -"odstránený." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6180,30 +6293,6 @@ msgstr "Žiadny" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Ovplyvnený bol %1$d riadok." -msgstr[1] "Ovplyvnené boli %1$d riadky." -msgstr[2] "Ovplyvnených bolo %1$d riadkov." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Bol zmazaný %1$d riadok." -msgstr[1] "Boli zmazané %1$d riadky." -msgstr[2] "Bolo zmazaných %1$d riadkov." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Bol vložený %1$d riadok." -msgstr[1] "Boli vložené %1$d riadky." -msgstr[2] "Bolo vložených %1$d riadkov." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "Z" @@ -6443,22 +6532,6 @@ msgstr "" msgid "This format has no options" msgstr "Tento formát nemá žiadne nastavenia" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Nepodarilo sa uložiť najnovšíu tabuľku" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Počítať tabuľky" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no files to upload" -msgid "There are no recent tables" -msgstr "Žiadny súbor pre nahrávanie" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "chyba" @@ -6839,68 +6912,6 @@ msgstr "" msgid "Target database" msgstr "Cieľová databáza" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Vyskytla sa chyba v SQL dopyte. Nižšie uvedený MySQL výstup (ak je nejaký) " -"Vám môže pomôcť odstrániť problém" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Je možné, že ste našli chybu v SQL syntaktickom analyzátore. Preskúmajte " -"podrobne SQL dopyt, predovšetkým správnosť umiestnenia úvodzoviek. Ďalšia " -"možnosť je, že nahrávate súbor s binárnymi dátami nezapísanými v " -"úvodzovkách. Môžete tiež vyskúšať použiť príkazový riadok MySQL na " -"odstránenie problému. Pokial stále máte problémy alebo syntaktický " -"analyzátor SQL stále hlási chybu v dopyte, ktorý v príkazovom riadku " -"funguje, prosím pokúste sa zredukovať dopyt na čo najmenší, v ktorom sa " -"problém ešte vyskytuje a ohláste chybu na stránke phpMyAdmina spolu so " -"sekciou VÝPIS uvedenú nižšie:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "ZAČIATOK VÝSEKU" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "KONIEC VÝSEKU" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "ZAČIATOK TOKU" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "KONIEC TOKU" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Neuzatvorené úvodzovky" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Neplatný identifikátor" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Neznámy interpunkčný reťazec" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6956,58 +6967,77 @@ msgstr "Umiestnenie textového súboru" msgid "web server upload directory" msgstr "upload adresár web serveru" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " -"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" -"sdocumentation%s." +"Vyskytla sa chyba v SQL dopyte. Nižšie uvedený MySQL výstup (ak je nejaký) " +"Vám môže pomôcť odstrániť problém" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -"Pre tento úložný systém nie sú dostupné žiadne podrobnejšie informácie." +"Je možné, že ste našli chybu v SQL syntaktickom analyzátore. Preskúmajte " +"podrobne SQL dopyt, predovšetkým správnosť umiestnenia úvodzoviek. Ďalšia " +"možnosť je, že nahrávate súbor s binárnymi dátami nezapísanými v " +"úvodzovkách. Môžete tiež vyskúšať použiť príkazový riadok MySQL na " +"odstránenie problému. Pokial stále máte problémy alebo syntaktický " +"analyzátor SQL stále hlási chybu v dopyte, ktorý v príkazovom riadku " +"funguje, prosím pokúste sa zredukovať dopyt na čo najmenší, v ktorom sa " +"problém ešte vyskytuje a ohláste chybu na stránke phpMyAdmina spolu so " +"sekciou VÝPIS uvedenú nižšie:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "Úložný systém %s je dostupný na tomto MySQL serveri." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "ZAČIATOK VÝSEKU" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "Úložný systém %s bol zakázaný na tomto MySQL serveri." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "KONIEC VÝSEKU" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Tento MySQL server nepodporuje úložný systém %s." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "ZAČIATOK TOKU" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Chybná databáza" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "KONIEC TOKU" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Chybné meno tabuľky" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Neuzatvorené úvodzovky" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabuľka %s bola premenovaná na %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Neplatný identifikátor" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Neznámy interpunkčný reťazec" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " +"%sdocumentation%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7128,38 +7158,6 @@ msgstr "" msgid "+ Add a value" msgstr "Pridať nového používateľa" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Náhľad nie je dostupný." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "zvoliť" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Predvolený vzhľad %s nebol nájdený!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Vzhľad %s nebol nájdený!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Nebola nájdená platná cesta ku vzhľadu %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7733,8 +7731,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %" -"sNastavovacieho skriptu%s." +"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím " +"%sNastavovacieho skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -8178,13 +8176,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " "Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " -"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" -"sznovunačítanie práv%s predtým ako budete pokračovať." +"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " +"%sznovunačítanie práv%s predtým ako budete pokračovať." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10683,8 +10681,8 @@ msgstr "Premenovať pohľad na" #~ msgid "Imported file compression will be automatically detected from: %s" #~ msgstr "" -#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %" -#~ "s" +#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: " +#~ "%s" #~ msgid "Add into comments" #~ msgstr "Pridať do komentárov" diff --git a/po/sl.po b/po/sl.po index 6d06c2612138..dd82dbd083cf 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-23 23:03+0200\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-25 10:41+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Iskanje" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Iskanje" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Izvedi" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Zbirka podatkov %1$s je ustvarjena." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Pripomba zbirke podatkov: " @@ -132,9 +132,9 @@ msgstr "Pripomba zbirke podatkov: " msgid "Table comments" msgstr "Pripomba tabele" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Pripomba tabele" msgid "Column" msgstr "Stolpec" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Stolpec" msgid "Type" msgstr "Vrsta" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Povezave z" msgid "Comments" msgstr "Pripombe" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Pripombe" msgid "No" msgstr "Ne" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Prekliči izbor vsega" msgid "The database name is empty!" msgstr "Ime zbirke podatkov je prazno!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Zbirka podatkov %s je preimenovana v %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Zbirka podatkov %s je kopirana v %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Ukaz" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Odstrani zbirko podatkov" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Zbirka podatkov %s je zavržena." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Zavrzi zbirko podatkov (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopiraj zbirko podatkov v" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktura in podatki" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Samo podatki" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Dodaj omejitve" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Preklopi na kopirano zbirko podatkov" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Preklopi na kopirano zbirko podatkov" msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "Hramba konfiguracije phpMyAdmin je bila onemogočena. Če želite izvedeti " "zakaj, kliknite %stukaj%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Uredi ali izvozi relacijsko shemo" @@ -500,14 +499,14 @@ msgstr "Poizvedba SQL na zbirki podatkov %s:" msgid "Submit Query" msgstr "Izvedi poizvedbo" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Poizvedba SQL je bila uspešno izvedena" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -516,84 +515,83 @@ msgstr[1] "Zadnja izjava znotraj procedure je spremenila %d vrstici" msgstr[2] "Zadnja izjava znotraj procedure je spremenila %d vrstice" msgstr[3] "Zadnja izjava znotraj procedure je spremenila %d vrstic" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "Rezultati izvedbe rutine %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 -#, fuzzy, php-format -#| msgid "The following queries have been executed:" +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 +#, php-format msgid "The following query has failed: \"%s\"" -msgstr "Poizvedba \"%s\" je spodletela" +msgstr "Naslednja poizvedba je spodletela: \"%s\"" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "Napaka v obdelovanju zahteve" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, php-format msgid "No routine with name %1$s found in database %2$s" msgstr "Rutine imenovane %1$s ni mogoče najti v zbirki podatkov %2$s" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "Izvedi rutino" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "Izvoz rutine %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Neveljavna vrsta rutine: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "Oprostite, zavržene rutine nam ni uspelo obnoviti." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "Varnostno kopirana poizvedba je bila:" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutina %1$s je bila spremenjena." -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "Rutina %1$s je bila ustvarjena." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "Med obdelovanjem vaše zahteve je prišlo do ene ali več napak:" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "Ustvari rutino" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "Uredi rutino" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -"Prva vrstica v datoteki vsebuje imena stolpcev tabele (če to ni označeno, " -"bo prva vrstica postala del podatkov)" +"Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Oglejte si vsebino strukture s klikom na njeno ime" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +"Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -"Če podatki v vsaki vrstici datoteke niso v enakem vrstnem redu kot v zbirki " -"podatkov, tukaj navedite ustrezna imena stolpcev. Imena stolpcev morajo biti " -"ločena z vejicami in ne smejo biti obdana z narekovaji." +"Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo " +"\"Možnosti\"" -#: libraries/import/csv.php:42 -msgid "Column names: " +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\"" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Pojdi v zbirko podatkov" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "nastavitve" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Pojdi v tabelo" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Pojdi na pogled" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" +"Prva vrstica v datoteki vsebuje imena stolpcev tabele (če to ni označeno, " +"bo prva vrstica postala del podatkov)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" +"Če podatki v vsaki vrstici datoteke niso v enakem vrstnem redu kot v zbirki " +"podatkov, tukaj navedite ustrezna imena stolpcev. Imena stolpcev morajo biti " +"ločena z vejicami in ne smejo biti obdana z narekovaji." + +#: libraries/import/csv.php:42 +msgid "Column names: " msgstr "Imena stolpcev: " #: libraries/import/csv.php:62 libraries/import/csv.php:75 @@ -6114,43 +6298,6 @@ msgstr "Imena stolpcev" msgid "This plugin does not support compressed imports!" msgstr "Ta vtičnik ne podpira stisnjenih uvozov!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" -"Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Oglejte si vsebino strukture s klikom na njeno ime" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo " -"\"Možnosti\"" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\"" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Pojdi v zbirko podatkov" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "nastavitve" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Pojdi v tabelo" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Pojdi na pogled" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6176,42 +6323,6 @@ msgstr "" "Določena datoteka XML je ali skažena ali nepopolna. Prosimo, odpravite " "težave in poskusite znova." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Ni definiranega indeksa!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Edinstven" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Stisnjeno" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinalnost" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primarni ključ je zavržen" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Indeks %s je zavržen" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko " -"odstrani." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6222,33 +6333,6 @@ msgstr "Nobeno" msgid "Convert to Kana" msgstr "Pretvori v kano" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "Spremenjena je %1$d vrstica." -msgstr[1] "Spremenjeni sta %1$d vrstici." -msgstr[2] "Spremenjene so %1$d vrstice." -msgstr[3] "Spremenjenih je %1$d vrstic." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Izbrisana je %1$d vrstica." -msgstr[1] "Izbrisani sta %1$d vrstici." -msgstr[2] "Izbrisane so %1$d vrstice." -msgstr[3] "Izbrisanih je %1$d vrstic." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Vstavljena je %1$d vrstica." -msgstr[1] "Vstavljeni sta %1$d vrstici." -msgstr[2] "Vstavljene so %1$d vrstice." -msgstr[3] "Vstavljenih je %1$d vrstic." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "Od" @@ -6487,18 +6571,6 @@ msgstr "Osveži okvir navigacije" msgid "This format has no options" msgstr "Za to obliko ni možnosti" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Ne morem shraniti nedavne tabele" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Nedavne tabele" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Ni nobenih nedavnih tabel" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "ni v redu" @@ -6881,6 +6953,61 @@ msgstr "Razlika" msgid "Target database" msgstr "Ciljna zbirka podatkov" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Počisti" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Stolpci" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Označi to poizvedbo SQL" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Dovoli dostop do zaznamka vsem uporabnikom" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Zamenjaj obstoječ zaznamek z istim imenom" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Ne prepiši te poizvedbe od zunaj" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Ločilo" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Ponovno pokaži poizvedbo v tem oknu " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Samo pogled" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Mesto datoteke z besedilom" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "imenik za nalaganje datotek" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6943,61 +7070,6 @@ msgstr "Neveljavni identifikator" msgid "Unknown Punctuation String" msgstr "Neznan niz ločil" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Počisti" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Stolpci" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Označi to poizvedbo SQL" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Dovoli dostop do zaznamka vsem uporabnikom" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Zamenjaj obstoječ zaznamek z istim imenom" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Ne prepiši te poizvedbe od zunaj" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Ločilo" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Ponovno pokaži poizvedbo v tem oknu " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Samo pogled" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Mesto datoteke z besedilom" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "imenik za nalaganje datotek" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7007,49 +7079,6 @@ msgstr "" "Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so " "nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Za ta skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s je na voljo na tem strežniku MySQL." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s je onemogočeno za ta strežnik MySQL." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Neveljavna zbirka podatkov" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Neveljavno ime tabele" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Napaka pri preimenovanju tabele %1$s v %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabela %s je preimenovana v %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Tabela je prazna!" @@ -7170,38 +7199,6 @@ msgstr "Definicija PARTITION" msgid "+ Add a value" msgstr "+ Dodaj novo vrednost" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Za temo %s ni bila najdena veljavna pot slik!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Predogled ni na voljo." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "uporabi" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Privzeta tema %s ni bila najdena!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s ni bila najdena!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Pot teme ni bila najdena za temo %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "Motiv" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8244,8 +8241,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " "privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " diff --git a/po/sq.po b/po/sq.po index 6a858e86de38..6e35d1f11b81 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Kërko" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Kërko" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Zbato" @@ -120,7 +120,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "U krijua baza e të dhënave %1$s." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Komenti për databazën: " @@ -130,9 +130,9 @@ msgstr "Komenti për databazën: " msgid "Table comments" msgstr "Komentet e tabelës" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Komentet e tabelës" msgid "Column" msgstr "Emrat e kollonave" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Emrat e kollonave" msgid "Type" msgstr "Lloji" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Lidhje me" msgid "Comments" msgstr "Komente" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Komente" msgid "No" msgstr " Jo " -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,82 +261,82 @@ msgstr "Asnjë zgjedhje" msgid "The database name is empty!" msgstr "Mungon emri i databazës!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databazës %s i është ndryshuar emri në %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Databaza %s është kopjuar tek %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Komanda" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Databaza %s u eleminua." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Asnjë databazë" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopjo databazën në" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Vetëm struktura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktura dhe të dhënat" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Vetëm të dhënat" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE para se të kopjohet" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Shto %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerë AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Shto kushte" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Kalo tek databaza e kopjuar" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -346,7 +345,7 @@ msgstr "Kalo tek databaza e kopjuar" msgid "Collation" msgstr "Collation" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -358,7 +357,7 @@ msgstr "" "Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me " "tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -511,102 +510,102 @@ msgstr "Kërkesë SQL tek databaza %s:" msgid "Submit Query" msgstr "Dërgo Query" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Query SQL u zbatua me sukses" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Mesazh nga MySQL: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proceset" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Nuk gjenden tabela në databazë." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabela %s u eleminua" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabela %s u eleminua" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Versioni i MySQL" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Asnjë databazë" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." msgstr "" #: libraries/import/csv.php:42 @@ -6160,41 +6337,6 @@ msgstr "Emrat e kollonave" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Asnjë databazë" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6217,40 +6359,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Asnjë tregues i përcaktuar!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "I vetëm" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Kyçi primar u eleminua" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Treguesi %s u eleminua" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6263,29 +6371,6 @@ msgstr "Asnjë lloj" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Nuk ka rreshta të zgjedhur" -msgstr[1] "Nuk ka rreshta të zgjedhur" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Nuk ka rreshta të zgjedhur" -msgstr[1] "Nuk ka rreshta të zgjedhur" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6529,19 +6614,6 @@ msgstr "" msgid "This format has no options" msgstr "Ky format nuk ka opcione" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Asnjë tabelë" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "jo OK" @@ -6934,71 +7006,6 @@ msgstr "" msgid "Target database" msgstr "Kërko në databazë" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Mesa duket ekziston një gabim tek query juaj SQL e futur. Gabimi i serverit " -"MySQL i treguar më poshtë, nëse ekziston, mund t'ju ndihmojë në " -"diagnostikimin e problemit" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Ka mundësi që ka një bug tek parser-i SQL. Ju lutem, kontrolloni query tuaj " -"me kujdes, dhe kontrolloni që presjet të jenë ku duhet dhe jo të gabuara. " -"Një shkak tjetër i mundshëm i gabimit mund të jetë që po mundoheni të " -"uploadoni një file binar jashtë një zone teksti të kufizuar me presje. Mund " -"edhe të provoni query tuaj MySQL nga interfaqja e shkruar e komandave. " -"Gabimi i mëposhtëm i kthyer nga server-i MySQL, nëse ekziston një i tillë, " -"mund tju ndihmojë në diagnostikimin e problemit. Nëse ka akoma probleme, apo " -"n.q.s. parser-i SQL i phpMyAdmin gabon kur përkundrazi nga interfaqja e " -"komandave të thjeshta nuk rezultojnë probleme, ju lutem zvogëloni query tuaj " -"SQL në hyrje në query e vetme që shkakton probleme, dhe dërgoni një bug " -"raportim me të dhënat rezultuese nga seksioni CUT i mëposhtëm:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "FILLIMI I CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "FUNDI I CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "FILLIMI I RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "FUNDI I RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Thonjëza të pambyllura" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Identifikues i pavlefshëm" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Stringë Punctuation e panjohur" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -7057,56 +7064,79 @@ msgstr "Pozicioni i file" msgid "web server upload directory" msgstr "directory e upload të server-it web" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e " -"prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s." +"Mesa duket ekziston një gabim tek query juaj SQL e futur. Gabimi i serverit " +"MySQL i treguar më poshtë, nëse ekziston, mund t'ju ndihmojë në " +"diagnostikimin e problemit" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" +"Ka mundësi që ka një bug tek parser-i SQL. Ju lutem, kontrolloni query tuaj " +"me kujdes, dhe kontrolloni që presjet të jenë ku duhet dhe jo të gabuara. " +"Një shkak tjetër i mundshëm i gabimit mund të jetë që po mundoheni të " +"uploadoni një file binar jashtë një zone teksti të kufizuar me presje. Mund " +"edhe të provoni query tuaj MySQL nga interfaqja e shkruar e komandave. " +"Gabimi i mëposhtëm i kthyer nga server-i MySQL, nëse ekziston një i tillë, " +"mund tju ndihmojë në diagnostikimin e problemit. Nëse ka akoma probleme, apo " +"n.q.s. parser-i SQL i phpMyAdmin gabon kur përkundrazi nga interfaqja e " +"komandave të thjeshta nuk rezultojnë probleme, ju lutem zvogëloni query tuaj " +"SQL në hyrje në query e vetme që shkakton probleme, dhe dërgoni një bug " +"raportim me të dhënat rezultuese nga seksioni CUT i mëposhtëm:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "FILLIMI I CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "FUNDI I CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "FILLIMI I RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "FUNDI I RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Thonjëza të pambyllura" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabela %s u riemërtua %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Identifikues i pavlefshëm" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Stringë Punctuation e panjohur" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e " +"prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7237,38 +7267,6 @@ msgstr "" msgid "+ Add a value" msgstr "Shto një përdorues të ri" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "merre" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8365,8 +8363,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e " "privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të " @@ -10653,8 +10651,8 @@ msgstr "Riemërto tabelën në" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %" -#~ "s queries." +#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar " +#~ "%s queries." #, fuzzy #~| msgid "The privileges were reloaded successfully." diff --git a/po/sr.po b/po/sr.po index 63e7131bef51..53b77927c74a 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Претраживање" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Претраживање" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Крени" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База %s је креирана." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Коментар базе:" @@ -131,9 +131,9 @@ msgstr "Коментар базе:" msgid "Table comments" msgstr "Коментари табеле" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -142,12 +142,12 @@ msgstr "Коментари табеле" msgid "Column" msgstr "Колона" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -157,9 +157,9 @@ msgstr "Колона" msgid "Type" msgstr "Тип" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -197,13 +197,12 @@ msgstr "Везе ка" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -214,17 +213,17 @@ msgstr "Коментари" msgid "No" msgstr "Не" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -261,79 +260,79 @@ msgstr "ништа" msgid "The database name is empty!" msgstr "Име базе није задато!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "База %s је преименована у %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "База %s је прекопирана у %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Наредба" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Уклони базу" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "База %s је одбачена." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Одбаци базу (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Копирај базу у" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Структура и подаци" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Само подаци" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Додај %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Додај ограничења" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Пребаци се на копирану базу" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -342,7 +341,7 @@ msgstr "Пребаци се на копирану базу" msgid "Collation" msgstr "Сортирање" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,7 +353,7 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Уреди или извези релациону схему" @@ -506,14 +505,14 @@ msgstr "SQL упит на бази %s:" msgid "Submit Query" msgstr "Изврши SQL упит" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL упит је успешно извршен" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -521,93 +520,93 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозвољава извршавање сачуваних рутина." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL рече: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процеси" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Табеле нису пронађене у бази." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "Увоз датотека" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Неисправан индекс сервера: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Табела %s је одбачена" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Табела %s је одбачена" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Направи релацију" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутине" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" msgstr "" @@ -6334,40 +6479,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Кључ није дефинисан!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Јединствени" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Кардиналност" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Примарни кључ је обрисан" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Кључ %s је обрисан" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6380,29 +6491,6 @@ msgstr "нема" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Нема одабраних редова" -msgstr[1] "Нема одабраних редова" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Нема одабраних редова" -msgstr[1] "Нема одабраних редова" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6647,22 +6735,6 @@ msgstr "" msgid "This format has no options" msgstr "Не постоје опције за овај формат" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Нема табела" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -msgid "There are no recent tables" -msgstr "Провери табелу" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "није у реду" @@ -7055,68 +7127,6 @@ msgstr "" msgid "Target database" msgstr "Претраживање базе" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Изгледа да постоји грешка у вашем SQL упиту. Овде је порука о грешки MySQL " -"сервера, која вам може помоћи у откривању проблема" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Постоји могућност да сте пронашли баг у SQL парсеру. Молимо испитајте свој " -"упит пажљиво, и проверите да су наводници исправни и да не недостају. Остали " -"могући разлози грешке могу бити да сте послали бинарну датотеку ван области " -"за обичан текст. Можете пробати свој упит у MySQL сучељу командне линије. " -"Доња порука о грешци MySQL сервера, ако је има, може вам помоћи у откривању " -"проблема. Ако и даље имате проблеме или ако парсер не успева тамо где успева " -"сучеље командне линије, сведите свој SQL упит на један једини упит који " -"ствара проблеме и пошаљите нам извештај о грешци са делом кода у доњој РЕЗ " -"секцији:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "ПОЧЕТАК РЕЗ" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "КРАЈ РЕЗ" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "ПОЧЕТАК СИРОВО" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "КРАЈ СИРОВО" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Наводник није затворен" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Неисправан иГ¤ентификатор" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Непознат стринг интерпункције" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7175,56 +7185,76 @@ msgstr "Локација текстуалне датотеке" msgid "web server upload directory" msgstr "директоријум за слање веб сервера " -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране " -"неопходне PHP екстензије описане у %sдокументацији%s." +"Изгледа да постоји грешка у вашем SQL упиту. Овде је порука о грешки MySQL " +"сервера, која вам може помоћи у откривању проблема" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Нема детаљнијих информација о статусу за овај погон складиштења." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"Постоји могућност да сте пронашли баг у SQL парсеру. Молимо испитајте свој " +"упит пажљиво, и проверите да су наводници исправни и да не недостају. Остали " +"могући разлози грешке могу бити да сте послали бинарну датотеку ван области " +"за обичан текст. Можете пробати свој упит у MySQL сучељу командне линије. " +"Доња порука о грешци MySQL сервера, ако је има, може вам помоћи у откривању " +"проблема. Ако и даље имате проблеме или ако парсер не успева тамо где успева " +"сучеље командне линије, сведите свој SQL упит на један једини упит који " +"ствара проблеме и пошаљите нам извештај о грешци са делом кода у доњој РЕЗ " +"секцији:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s је доступан на овом MySQL серверу." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "ПОЧЕТАК РЕЗ" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s је онемогућен на овом MySQL серверу." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "КРАЈ РЕЗ" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Овај MySQL сервер не подржава %s погон складиштења." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "ПОЧЕТАК СИРОВО" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Неисправна база података" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "КРАЈ СИРОВО" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Неисправан назив табеле" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Грешка при преименовању табеле %1$s у %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Наводник није затворен" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Табели %s промењено име у %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Неисправан иГ¤ентификатор" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Непознат стринг интерпункције" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране " +"неопходне PHP екстензије описане у %sдокументацији%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7355,38 +7385,6 @@ msgstr "" msgid "+ Add a value" msgstr "Додај новог корисника" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Нема исправне путање до слика за тему %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Преглед не постоји." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "преузми" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Није пронађена подразумевана тема %s!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Није пронађена тема %s!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Није пронађена путања до теме за тему %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8502,8 +8500,8 @@ msgstr "Одбаци базе које се зову исто као корис msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " diff --git a/po/sr@latin.po b/po/sr@latin.po index 640428b6dba0..9e5f13445b61 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Pretraživanje" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Kreni" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Komentar baze:" @@ -133,9 +133,9 @@ msgstr "Komentar baze:" msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "Komentari tabele" msgid "Column" msgstr "Kolona" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "Kolona" msgid "Type" msgstr "Tip" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "Komentari" msgid "No" msgstr "Ne" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,79 +262,79 @@ msgstr "ništa" msgid "The database name is empty!" msgstr "Ime baze nije zadato!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza %s je preimenovana u %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza %s je prekopirana u %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Naredba" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Ukloni bazu" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Ukloni bazu i njen sadržaj" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopiraj bazu u" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktura i podaci" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Dodaj ograničenja" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,7 +343,7 @@ msgstr "Prebaci se na kopiranu bazu" msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -356,7 +355,7 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Uredi ili izvezi relacionu shemu" @@ -503,14 +502,14 @@ msgstr "SQL upit na bazi %s:" msgid "Submit Query" msgstr "Izvrši SQL upit" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -518,93 +517,93 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL reče: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Tabele nisu pronađene u bazi." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "Uvoz datoteka" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Neispravan indeks servera: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabela %s je odbačena" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabela %s je odbačena" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Napravi relaciju" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Rutine" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" msgstr "" @@ -6321,40 +6466,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Ključ nije definisan!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Jedinstveni" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinalnost" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Primarni ključ je obrisan" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Ključ %s je obrisan" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6367,29 +6478,6 @@ msgstr "nema" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Nema odabranih redova" -msgstr[1] "Nema odabranih redova" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Nema odabranih redova" -msgstr[1] "Nema odabranih redova" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6632,22 +6720,6 @@ msgstr "" msgid "This format has no options" msgstr "Ne postoje opcije za ovaj format" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Nema tabela" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -msgid "There are no recent tables" -msgstr "Proveri tabelu" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "nije u redu" @@ -7040,68 +7112,6 @@ msgstr "" msgid "Target database" msgstr "Pretraživanje baze" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Izgleda da postoji greška u vašem SQL upitu. Ovde je poruka o greški MySQL " -"servera, koja vam može pomoći u otkrivanju problema" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Postoji mogućnost da ste pronašli bag u SQL parseru. Molimo ispitajte svoj " -"upit pažljivo, i proverite da su navodnici ispravni i da ne nedostaju. " -"Ostali mogući razlozi greške mogu biti da ste poslali binarnu datoteku van " -"oblasti za običan tekst. Možete probati svoj upit u MySQL sučelju komandne " -"linije. Donja poruka o grešci MySQL servera, ako je ima, može vam pomoći u " -"otkrivanju problema. Ako i dalje imate probleme ili ako parser ne uspeva " -"tamo gde uspeva sučelje komandne linije, svedite svoj SQL upit na jedan " -"jedini upit koji stvara probleme i pošaljite nam izveštaj o grešci sa delom " -"koda u donjoj REZ sekciji:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "POČETAK REZ" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "KRAJ REZ" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "POČETAK SIROVO" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "KRAJ SIROVO" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Navodnik nije zatvoren" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Neispravan iG¤entifikator" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Nepoznat string interpunkcije" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7160,56 +7170,76 @@ msgstr "Lokacija tekstualne datoteke" msgid "web server upload directory" msgstr "direktorijum za slanje veb servera " -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " -"neophodne PHP ekstenzije opisane u %sdokumentaciji%s." +"Izgleda da postoji greška u vašem SQL upitu. Ovde je poruka o greški MySQL " +"servera, koja vam može pomoći u otkrivanju problema" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Nema detaljnijih informacija o statusu za ovaj pogon skladištenja." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"Postoji mogućnost da ste pronašli bag u SQL parseru. Molimo ispitajte svoj " +"upit pažljivo, i proverite da su navodnici ispravni i da ne nedostaju. " +"Ostali mogući razlozi greške mogu biti da ste poslali binarnu datoteku van " +"oblasti za običan tekst. Možete probati svoj upit u MySQL sučelju komandne " +"linije. Donja poruka o grešci MySQL servera, ako je ima, može vam pomoći u " +"otkrivanju problema. Ako i dalje imate probleme ili ako parser ne uspeva " +"tamo gde uspeva sučelje komandne linije, svedite svoj SQL upit na jedan " +"jedini upit koji stvara probleme i pošaljite nam izveštaj o grešci sa delom " +"koda u donjoj REZ sekciji:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s je dostupan na ovom MySQL serveru." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "POČETAK REZ" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s je onemogućen na ovom MySQL serveru." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "KRAJ REZ" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "POČETAK SIROVO" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Neispravna baza podataka" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "KRAJ SIROVO" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Neispravan naziv tabele" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Greška pri preimenovanju tabele %1$s u %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Navodnik nije zatvoren" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabeli %s promenjeno ime u %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Neispravan iG¤entifikator" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Nepoznat string interpunkcije" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " +"neophodne PHP ekstenzije opisane u %sdokumentaciji%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7340,38 +7370,6 @@ msgstr "" msgid "+ Add a value" msgstr "Dodaj novog korisnika" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Nema ispravne putanje do slika za temu %s!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Pregled ne postoji." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "preuzmi" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Nije pronađena podrazumevana tema %s!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Nije pronađena tema %s!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Nije pronađena putanja do teme za temu %s!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8489,8 +8487,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/sv.po b/po/sv.po index a123b7933c1f..63321b155434 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-16 00:11+0200\n" -"Last-Translator: \n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-25 01:19+0200\n" +"Last-Translator: \n" "Language-Team: swedish \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Sök" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Sök" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Kör" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Databaskommentar: " @@ -132,9 +132,9 @@ msgstr "Databaskommentar: " msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Tabellkommentarer" msgid "Column" msgstr "Kolumn" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Kolumn" msgid "Type" msgstr "Typ" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Länkar till" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Kommentarer" msgid "No" msgstr "Nej" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Avmarkera alla" msgid "The database name is empty!" msgstr "Databasens namn är tomt!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databas %s har döpts om till %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Databas %s har kopierats till %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Byt namn på databasen till" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Kommando" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Radera databasen" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har tagits bort." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Tag bort databasen (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Kopiera databas till" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Enbart struktur" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Struktur och data" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Enbart data" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT-värde" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Lägg till restriktioner" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Byt till kopierad databas" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Byt till kopierad databas" msgid "Collation" msgstr "Kollationering" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -351,7 +350,7 @@ msgid "" msgstr "" "Konfigurationsschemat för phpMyAdmin har avaktiverats. %sVisa orsaken%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Editera eller exportera relationsschema" @@ -497,115 +496,107 @@ msgstr "SQL-fråga i databas %s:" msgid "Submit Query" msgstr "Kör fråga" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-fråga utfördes korrekt" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d rad berörs av det sista uttrycket inom proceduren" +msgstr[1] "%d rader berörs av det sista uttrycket inom proceduren" -#: db_routines.php:165 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." +#: db_routines.php:167 +#, php-format msgid "Execution results of routine %s" -msgstr "Tillåter utförande av lagrade rutiner." +msgstr "Exekveringsresultat av rutin %s" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 -#, fuzzy, php-format -#| msgid "The following queries have been executed:" +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 +#, php-format msgid "The following query has failed: \"%s\"" -msgstr "Följande frågor har verkställts:" +msgstr "Följande fråga har fallerat: \"%s\"" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL sa: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 -#, fuzzy -#| msgid "Error in Processing Request" +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" -msgstr "Fel i processbegäran" +msgstr "Fel i utförandebegäran" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 -#, fuzzy, php-format -#| msgid "No tables found in database" +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 +#, php-format msgid "No routine with name %1$s found in database %2$s" -msgstr "Inga tabeller finns i databasen." +msgstr "Ingen rutin med namnet %1$s finns i databasen %2$s" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" -msgstr "" +msgstr "Utför rutin" -#: db_routines.php:259 db_routines.php:263 -#, fuzzy, php-format -#| msgid "Export defaults" +#: db_routines.php:261 db_routines.php:265 +#, php-format msgid "Export of routine %s" -msgstr "Exportera standardvärden" +msgstr "Exportera rutin %s" -#: db_routines.php:288 libraries/db_routines.lib.php:960 -#, fuzzy, php-format -#| msgid "Invalid server index: %s" +#: db_routines.php:290 libraries/db_routines.lib.php:960 +#, php-format msgid "Invalid routine type: \"%s\"" -msgstr "Ogiltigt serverindex: %s" +msgstr "Ogiltig rutintyp: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." -msgstr "" +msgstr "Tyvärr, vi lyckades inte återställa den slängda rutinen." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" -msgstr "" +msgstr "Den säkerhetskopierade frågan var:" -#: db_routines.php:314 -#, fuzzy, php-format -#| msgid "Column %s has been dropped" +#: db_routines.php:316 +#, php-format msgid "Routine %1$s has been modified." -msgstr "Kolumnen %s har tagits bort" +msgstr "Rutinen %1$s har modifierats." -#: db_routines.php:327 -#, fuzzy, php-format -#| msgid "Table %1$s has been created." +#: db_routines.php:329 +#, php-format msgid "Routine %1$s has been created." -msgstr "Tabell %1$s har skapats." +msgstr "Rutinen %1$s har skapats." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" +" Ett eller flera fel har inträffat under hanteringen av din begäran: " -#: db_routines.php:379 -#, fuzzy -#| msgid "Create relation" +#: db_routines.php:381 msgid "Create routine" -msgstr "Skapa relation" +msgstr "Skapa rutin" -#: db_routines.php:383 -#, fuzzy -#| msgid "Edit mode" +#: db_routines.php:385 msgid "Edit routine" -msgstr "Redigeringsläge" +msgstr "Redigera rutin" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail! Please use the improved 'mysqli' extension to avoid any problems." msgstr "" +"Du använder PHP: s utfasade \"mysql\" utvidgning, vilken inte klarar av att " +"hantera flera frågor. Genomförandet av vissa lagrade rutiner kan " +"misslyckas! Använd den förbättrade \"mysqli\" utvidgningen för att " +"undvika eventuella problem." #: db_search.php:54 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 @@ -677,10 +668,8 @@ msgid "Search in database" msgstr "Sök i databas" #: db_search.php:300 -#, fuzzy -#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" -msgstr "Ord eller värde(n) att söka efter (jokertecken: \"%\"):" +msgstr "Ord eller värden att söka efter (jokertecken: \"%\"):" #: db_search.php:305 msgid "Find:" @@ -691,10 +680,8 @@ msgid "Words are separated by a space character (\" \")." msgstr "Ord är separerade med mellanslag (\" \")." #: db_search.php:323 -#, fuzzy -#| msgid "Inside table(s):" msgid "Inside tables:" -msgstr "I tabell(er):" +msgstr "Inuti tabeller:" #: db_search.php:353 msgid "Inside column:" @@ -730,8 +717,8 @@ msgstr "Spårning är inte aktiv." #: db_structure.php:372 libraries/display_tbl.lib.php:2235 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." #: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152 @@ -798,8 +785,8 @@ msgstr "Utskriftsvänlig visning" msgid "Empty" msgstr "Töm" -#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956 -#: libraries/common.lib.php:2957 libraries/Index.class.php:490 +#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490 +#: libraries/common.lib.php:2956 libraries/common.lib.php:2957 #: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154 #: tbl_structure.php:603 msgid "Drop" @@ -872,9 +859,9 @@ msgstr "Uppdaterad" msgid "Status" msgstr "Status" -#: db_tracking.php:90 libraries/db_events.inc.php:68 -#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44 -#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442 +#: db_tracking.php:90 libraries/Index.class.php:442 +#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215 +#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76 #: server_databases.php:191 server_privileges.php:1612 #: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214 msgid "Action" @@ -968,8 +955,8 @@ msgstr "SQL-satserna har sparats till filen %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för att gå runt denna begränsning." @@ -1147,11 +1134,11 @@ msgstr "Tar bort markerade användare" msgid "Close" msgstr "Stäng" -#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594 -#: libraries/common.lib.php:1144 libraries/common.lib.php:2960 -#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150 -#: libraries/import.lib.php:1174 libraries/Index.class.php:468 +#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468 +#: libraries/common.lib.php:594 libraries/common.lib.php:1144 +#: libraries/common.lib.php:2960 libraries/common.lib.php:2961 +#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 #: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137 msgid "Edit" msgstr "Ändra" @@ -1197,41 +1184,35 @@ msgstr "," #: js/messages.php:78 msgid "KiB sent since last refresh" -msgstr "" +msgstr "KB skickade sedan den senaste uppdateringen" #: js/messages.php:79 msgid "KiB received since last refresh" -msgstr "" +msgstr "kb mottagna sedan den senaste uppdateringen" #: js/messages.php:80 -#, fuzzy -#| msgid "Server traffic" msgid "Server traffic (in KiB)" -msgstr "Server trafik" +msgstr "Server trafik (i kb)" #: js/messages.php:81 msgid "Connections since last refresh" -msgstr "" +msgstr "Anslutningar sedan förra uppdateringen" #: js/messages.php:82 server_status.php:794 msgid "Processes" msgstr "Processer" #: js/messages.php:83 -#, fuzzy -#| msgid "Connections" msgid "Connections / Processes" -msgstr "Förbindelser" +msgstr "Förbindelser / Processer" #: js/messages.php:84 msgid "Issued queries since last refresh" -msgstr "" +msgstr "Skapade frågor sedan föregående uppdateringen" #: js/messages.php:85 -#, fuzzy -#| msgid "SQL queries" msgid "Issued queries" -msgstr "SQL-frågor" +msgstr "Skapade frågor" #: js/messages.php:87 server_status.php:402 msgid "Query statistics" @@ -1321,12 +1302,11 @@ msgstr "Raderar" #: js/messages.php:122 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" +"Definitionen av en sparad funktion måste innehålla en RETURN-programsats!" #: js/messages.php:123 -#, fuzzy -#| msgid "Missing value in the form!" msgid "Value too long in the form!" -msgstr "Värde saknas i formuläret!" +msgstr "Värdet för långt i formuläret!" #: js/messages.php:126 msgid "" @@ -1691,6 +1671,217 @@ msgstr "Minuter" msgid "Second" msgstr "Sekunder" +#: libraries/Config.class.php:1190 +msgid "Font size" +msgstr "Teckenstorlek" + +#: libraries/File.class.php:310 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" +"Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini." + +#: libraries/File.class.php:313 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" +"Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades " +"i HTML-formuläret." + +#: libraries/File.class.php:316 +msgid "The uploaded file was only partially uploaded." +msgstr "Den uppladdade filen blev endast delvis uppladdad." + +#: libraries/File.class.php:319 +msgid "Missing a temporary folder." +msgstr "Saknar en temporär katalog." + +#: libraries/File.class.php:322 +msgid "Failed to write file to disk." +msgstr "Misslyckades att skriva fil till disk." + +#: libraries/File.class.php:325 +msgid "File upload stopped by extension." +msgstr "Filuppladdning stoppades av tillägg." + +#: libraries/File.class.php:328 +msgid "Unknown error in file upload." +msgstr "Okänt fel i filuppladdning." + +#: libraries/File.class.php:559 +msgid "" +"Error moving the uploaded file, see [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" +msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11" + +#: libraries/Index.class.php:430 tbl_relation.php:526 +msgid "No index defined!" +msgstr "Inga index är definierade!" + +#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40 +#: tbl_tracking.php:309 +msgid "Indexes" +msgstr "Index" + +#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 +#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 +#: tbl_tracking.php:315 +msgid "Unique" +msgstr "Unik" + +#: libraries/Index.class.php:447 tbl_tracking.php:316 +msgid "Packed" +msgstr "Packad" + +#: libraries/Index.class.php:449 tbl_tracking.php:318 +msgid "Cardinality" +msgstr "Kardinalitet" + +#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777 +#: tbl_tracking.php:272 tbl_tracking.php:321 +msgid "Comment" +msgstr "Kommentar" + +#: libraries/Index.class.php:474 +msgid "The primary key has been dropped" +msgstr "Den primära nyckeln har tagits bort" + +#: libraries/Index.class.php:478 +#, php-format +msgid "Index %s has been dropped" +msgstr "Index %s har tagits bort" + +#: libraries/Index.class.php:582 +#, php-format +msgid "" +"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " +"removed." +msgstr "" +"Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas " +"bort." + +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177 +#: libraries/server_links.inc.php:43 server_databases.php:100 +#: server_privileges.php:1740 +msgid "Databases" +msgstr "Databaserna" + +#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308 +#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883 +#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60 +msgid "Error" +msgstr "Fel" + +#: libraries/Message.class.php:260 +#, php-format +msgid "%1$d row affected." +msgid_plural "%1$d rows affected." +msgstr[0] "%1$d rad påverkad." +msgstr[1] "%1$d rader påverkade." + +#: libraries/Message.class.php:279 +#, php-format +msgid "%1$d row deleted." +msgid_plural "%1$d rows deleted." +msgstr[0] "%1$d rad borttagen." +msgstr[1] "%1$d rader borttagna." + +#: libraries/Message.class.php:298 +#, php-format +msgid "%1$d row inserted." +msgid_plural "%1$d rows inserted." +msgstr[0] "%1$d rad infogad." +msgstr[1] "%1$d rader infogade." + +#: libraries/RecentTable.class.php:114 +msgid "Could not save recent table" +msgstr "Kunde inte spara den senaste tabellen" + +#: libraries/RecentTable.class.php:149 +msgid "Recent tables" +msgstr "De senaste tabellerna" + +#: libraries/RecentTable.class.php:155 +msgid "There are no recent tables" +msgstr "Det finns inga nya tabeller" + +#: libraries/StorageEngine.class.php:195 +msgid "" +"There is no detailed status information available for this storage engine." +msgstr "" +"Det finns ingen detaljerad statusinformation tillgänglig för denna " +"lagringsmotor." + +#: libraries/StorageEngine.class.php:355 +#, php-format +msgid "%s is available on this MySQL server." +msgstr "%s är tillgänglig på denna MySQL-server." + +#: libraries/StorageEngine.class.php:358 +#, php-format +msgid "%s has been disabled for this MySQL server." +msgstr "%s har inaktiverats på denna MySQL-server." + +#: libraries/StorageEngine.class.php:362 +#, php-format +msgid "This MySQL server does not support the %s storage engine." +msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s." + +#: libraries/Table.class.php:1027 +msgid "Invalid database" +msgstr "Ogiltig databas" + +#: libraries/Table.class.php:1041 tbl_get_field.php:25 +msgid "Invalid table name" +msgstr "Ogiltigt tabellnamn" + +#: libraries/Table.class.php:1056 +#, php-format +msgid "Error renaming table %1$s to %2$s" +msgstr "Fel vid namnbyte av tabell %1$s till %2$s" + +#: libraries/Table.class.php:1139 +#, php-format +msgid "Table %s has been renamed to %s" +msgstr "Tabell %s har döpts om till %s" + +#: libraries/Table.class.php:1272 +msgid "Could not save table UI preferences" +msgstr "Kunde inte spara UI inställningarna för tabellen" + +#: libraries/Theme.class.php:160 +#, php-format +msgid "No valid image path for theme %s found!" +msgstr "Ingen giltig sökväg för tema %s hittades!" + +#: libraries/Theme.class.php:380 +msgid "No preview available." +msgstr "Ingen förhandsgranskning tillgänglig." + +#: libraries/Theme.class.php:383 +msgid "take it" +msgstr "använd detta" + +#: libraries/Theme_Manager.class.php:109 +#, php-format +msgid "Default theme %s not found!" +msgstr "Standardtema %s hittades inte!" + +#: libraries/Theme_Manager.class.php:147 +#, php-format +msgid "Theme %s not found!" +msgstr "Tema %s hittades inte!" + +#: libraries/Theme_Manager.class.php:215 +#, php-format +msgid "Theme path not found for theme %s!" +msgstr "Temats sökväg för tema %s hittades inte!" + +#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 +msgid "Theme" +msgstr "Tema" + #: libraries/auth/config.auth.lib.php:76 msgid "Cannot connect: invalid settings." msgstr "Kan ej skapa förbindelse: ogiltiga inställningar." @@ -1704,11 +1895,11 @@ msgstr "Välkommen till %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1" -"$suppsättningsskript%2$s för att skapa denna." +"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " +"%1$suppsättningsskript%2$s för att skapa denna." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1812,14 +2003,6 @@ msgstr "PBMS fel" msgid "PBMS connection failed:" msgstr "PBMS uppkoppling misslyckades" -#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314 -#: libraries/common.lib.php:561 libraries/core.lib.php:232 -#: libraries/import.lib.php:136 libraries/Message.class.php:205 -#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287 -#: view_operations.php:60 -msgid "Error" -msgstr "Fel" - #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" msgstr "PBMS hämtar BLOB info misslyckades" @@ -1872,11 +2055,6 @@ msgstr "Tabeller" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435 -#: tbl_tracking.php:309 -msgid "Indexes" -msgstr "Index" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:818 msgid "Overhead" @@ -1904,16 +2082,16 @@ msgid "Check Privileges" msgstr "Kontrollera privilegier" #: libraries/common.inc.php:587 -#, fuzzy -#| msgid "Could not save configuration" msgid "Failed to read configuration file" -msgstr "Kunde inte spara konfigurationen" +msgstr "Kunde inte läsa konfigurationsfilen" #: libraries/common.inc.php:588 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" +"Detta betyder oftast att det finns ett syntaxfel i det, kontrollera " +"eventuella fel som visas nedan." #: libraries/common.inc.php:595 #, php-format @@ -2155,11 +2333,79 @@ msgstr "Det finns inga filer att ladda upp" #: libraries/common.lib.php:2964 libraries/common.lib.php:2965 msgid "Execute" -msgstr "" +msgstr "Utför" -#: libraries/Config.class.php:1190 -msgid "Font size" -msgstr "Teckenstorlek" +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 +msgid "Both" +msgstr "Båda" + +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "Ingenstans" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "Vänster" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "Höger" + +#: libraries/config.values.php:75 +msgid "Open" +msgstr "Öppen" + +#: libraries/config.values.php:75 +msgid "Closed" +msgstr "Stängd" + +#: libraries/config.values.php:96 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:122 libraries/export/texytext.php:24 +#: libraries/import.lib.php:1172 +msgid "structure" +msgstr "struktur" + +#: libraries/config.values.php:97 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:123 libraries/export/texytext.php:24 +msgid "data" +msgstr "data" + +#: libraries/config.values.php:98 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:124 libraries/export/texytext.php:24 +msgid "structure and data" +msgstr "struktur och data" + +#: libraries/config.values.php:100 +msgid "Quick - display only the minimal options to configure" +msgstr "Snabb - visa endast få alternativ för konfiguration" + +#: libraries/config.values.php:101 +msgid "Custom - display all possible options to configure" +msgstr "Anpassad - visa alla tillgängliga konfigurations optioner" + +#: libraries/config.values.php:102 +msgid "Custom - like above, but without the quick/custom choice" +msgstr "Anpassad - Som ovan, men utan valet snabb/anpassad " + +#: libraries/config.values.php:120 +msgid "complete inserts" +msgstr "kompletta infogningar" + +#: libraries/config.values.php:121 +msgid "extended inserts" +msgstr "utökade infogningar" + +#: libraries/config.values.php:122 +msgid "both of the above" +msgstr "båda av ovanstående" + +#: libraries/config.values.php:123 +msgid "neither of the above" +msgstr "Ingen av ovanstående" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 @@ -2815,12 +3061,6 @@ msgstr "Ange kataloger för import och export och komprimeringsalternativ" msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430 -#: libraries/server_links.inc.php:43 server_databases.php:100 -#: server_privileges.php:1740 -msgid "Databases" -msgstr "Databaserna" - #: libraries/config/messages.inc.php:178 msgid "Databases display options" msgstr "Visningsalternativ för databaser" @@ -4434,78 +4674,6 @@ msgstr "Tomt lösenord för phpMyAdmin kontrollanvändare vid användning av pma msgid "Incorrect IP address: %s" msgstr "Felaktig IP-adress: %s" -#: libraries/config.values.php:45 libraries/config.values.php:47 -#: libraries/config.values.php:51 -msgid "Both" -msgstr "Båda" - -#: libraries/config.values.php:47 -msgid "Nowhere" -msgstr "Ingenstans" - -#: libraries/config.values.php:47 -msgid "Left" -msgstr "Vänster" - -#: libraries/config.values.php:47 -msgid "Right" -msgstr "Höger" - -#: libraries/config.values.php:75 -msgid "Open" -msgstr "Öppen" - -#: libraries/config.values.php:75 -msgid "Closed" -msgstr "Stängd" - -#: libraries/config.values.php:96 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:122 libraries/export/texytext.php:24 -#: libraries/import.lib.php:1172 -msgid "structure" -msgstr "struktur" - -#: libraries/config.values.php:97 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:123 libraries/export/texytext.php:24 -msgid "data" -msgstr "data" - -#: libraries/config.values.php:98 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:124 libraries/export/texytext.php:24 -msgid "structure and data" -msgstr "struktur och data" - -#: libraries/config.values.php:100 -msgid "Quick - display only the minimal options to configure" -msgstr "Snabb - visa endast få alternativ för konfiguration" - -#: libraries/config.values.php:101 -msgid "Custom - display all possible options to configure" -msgstr "Anpassad - visa alla tillgängliga konfigurations optioner" - -#: libraries/config.values.php:102 -msgid "Custom - like above, but without the quick/custom choice" -msgstr "Anpassad - Som ovan, men utan valet snabb/anpassad " - -#: libraries/config.values.php:120 -msgid "complete inserts" -msgstr "kompletta infogningar" - -#: libraries/config.values.php:121 -msgid "extended inserts" -msgstr "utökade infogningar" - -#: libraries/config.values.php:122 -msgid "both of the above" -msgstr "båda av ovanstående" - -#: libraries/config.values.php:123 -msgid "neither of the above" -msgstr "Ingen av ovanstående" - #. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. #: libraries/core.lib.php:264 msgctxt "PHP documentation language" @@ -4518,22 +4686,19 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s tillägg saknas. Vänligen kontrollera din PHP konfiguration." #: libraries/db_events.inc.php:30 -#, fuzzy, php-format -#| msgid "Export contents" +#, php-format msgid "Export of event %s" -msgstr "Exportera innehåll" +msgstr "Exportera händelse %s" #: libraries/db_events.inc.php:34 -#, fuzzy, php-format -#| msgid "Export contents" +#, php-format msgid "Export of event \"%s\"" -msgstr "Exportera innehåll" +msgstr "Exportera händelse \"%s\"" #: libraries/db_events.inc.php:40 -#, fuzzy, php-format -#| msgid "No tables found in database" +#, php-format msgid "No event with name %s found in database %s" -msgstr "Inga tabeller finns i databasen." +msgstr "Ingen händelse med namnet %s finns i databasen %s" #: libraries/db_events.inc.php:56 libraries/db_links.inc.php:101 #: libraries/export/sql.php:609 @@ -4541,10 +4706,8 @@ msgid "Events" msgstr "Händelser" #: libraries/db_events.inc.php:58 libraries/db_events.inc.php:60 -#, fuzzy -#| msgid "There are no files to upload" msgid "There are no events to display." -msgstr "Det finns inga filer att ladda upp" +msgstr "Det finns inga händelser att visa." #: libraries/db_events.inc.php:67 libraries/db_routines.lib.php:690 #: libraries/db_routines.lib.php:846 libraries/db_routines.lib.php:1214 @@ -4556,42 +4719,23 @@ msgstr "Namn" #: libraries/db_events.inc.php:129 msgid "The event scheduler is enabled" -msgstr "" +msgstr "Schemaläggaren är aktiverad" #: libraries/db_events.inc.php:129 msgid "The event scheduler is disabled" -msgstr "" +msgstr "Schemaläggaren är avaktiverad" #: libraries/db_events.inc.php:131 msgid "Turn it on" -msgstr "" +msgstr "Slå på den" #: libraries/db_events.inc.php:131 msgid "Turn it off" -msgstr "" +msgstr "Stäng av den" #: libraries/db_events.inc.php:141 -#, fuzzy -#| msgid "Add a new server" msgid "Add an event" -msgstr "Lägg till en ny server" - -#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 -msgid "Connection for controluser as defined in your configuration failed." -msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades." - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 -#: libraries/dbi/mysqli.dbi.lib.php:395 -msgid "The server is not responding" -msgstr "Servern svarar inte" - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)" - -#: libraries/dbi/mysql.dbi.lib.php:346 -msgid "Details..." -msgstr "Detaljer..." +msgstr "Lägg till en ny händelse" #: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 #: libraries/db_links.inc.php:44 @@ -4627,32 +4771,25 @@ msgid "Triggers" msgstr "Trigger" #: libraries/db_routines.lib.php:659 -#, fuzzy -#| msgid "Details..." msgid "Details" -msgstr "Detaljer..." +msgstr "Detaljer" #: libraries/db_routines.lib.php:662 -#, fuzzy -#| msgid "Routines" msgid "Routine name" -msgstr "Rutiner" +msgstr "Rutinnamn" #: libraries/db_routines.lib.php:679 -#, fuzzy, php-format -#| msgid "Change" +#, php-format msgid "Change to %s" -msgstr "Ändra" +msgstr "Ändra till %s" #: libraries/db_routines.lib.php:684 msgid "Parameters" -msgstr "" +msgstr "Parametrar" #: libraries/db_routines.lib.php:689 -#, fuzzy -#| msgid "Direct links" msgid "Direction" -msgstr "Direkta länkar" +msgstr "Riktning" #: libraries/db_routines.lib.php:692 libraries/tbl_properties.inc.php:105 msgid "Length/Values" @@ -4667,9 +4804,9 @@ msgstr "Längd/Värden" #: libraries/export/php_array.php:29 libraries/export/sql.php:83 #: libraries/export/texytext.php:31 libraries/export/xls.php:29 #: libraries/export/xlsx.php:29 libraries/export/xml.php:25 -#: libraries/export/yaml.php:30 libraries/import/csv.php:33 +#: libraries/export/yaml.php:30 libraries/import.lib.php:1145 +#: libraries/import.lib.php:1167 libraries/import/csv.php:33 #: libraries/import/docsql.php:35 libraries/import/ldi.php:49 -#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/ods.php:32 libraries/import/sql.php:20 #: libraries/import/xls.php:28 libraries/import/xlsx.php:28 #: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889 @@ -4677,67 +4814,48 @@ msgid "Options" msgstr "Alternativ" #: libraries/db_routines.lib.php:707 -#, fuzzy -#| msgid "Add prefix" msgid "Add parameter" -msgstr "Lägg till prefix" +msgstr "Lägg till parameter" #: libraries/db_routines.lib.php:710 -#, fuzzy -#| msgid "Remove database" msgid "Remove last parameter" -msgstr "Radera databasen" +msgstr "Ta bort senaste parametern" #: libraries/db_routines.lib.php:715 libraries/db_routines.lib.php:1217 msgid "Return type" msgstr "Returtyp" #: libraries/db_routines.lib.php:721 -#, fuzzy -#| msgid "Length/Values" msgid "Return length/values" -msgstr "Längd/Värden" +msgstr "Returnera längd/värden" #: libraries/db_routines.lib.php:726 -#, fuzzy -#| msgid "Table options" msgid "Return options" -msgstr "Tabellalternativ" +msgstr "Return alternativ" #: libraries/db_routines.lib.php:745 -#, fuzzy -#| msgid "Description" msgid "Definition" -msgstr "Beskrivning" +msgstr "Definition" #: libraries/db_routines.lib.php:749 msgid "Is deterministic" -msgstr "" +msgstr "Är deterministisk" #: libraries/db_routines.lib.php:753 msgid "Definer" -msgstr "" +msgstr "Definierare" #: libraries/db_routines.lib.php:758 -#, fuzzy -#| msgid "Security" msgid "Security type" -msgstr "Säkerhet" +msgstr "Säkerhetstyp" #: libraries/db_routines.lib.php:765 msgid "SQL data access" -msgstr "" - -#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452 -#: tbl_tracking.php:272 tbl_tracking.php:321 -msgid "Comment" -msgstr "Kommentar" +msgstr "SQL dataaccess" #: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842 -#, fuzzy -#| msgid "Routines" msgid "Routine parameters" -msgstr "Rutiner" +msgstr "Rutinparametrar" #: libraries/db_routines.lib.php:849 tbl_change.php:284 tbl_change.php:322 msgid "Function" @@ -4752,44 +4870,40 @@ msgstr "Värde" #: libraries/db_routines.lib.php:965 msgid "You must provide a routine name" -msgstr "" +msgstr "Du måste ange ett rutinnamn" #: libraries/db_routines.lib.php:984 #, php-format msgid "Invalid direction \"%s\" given for parameter." -msgstr "" +msgstr "Ogiltig riktning \"%s\" angiven för parameter." #: libraries/db_routines.lib.php:995 libraries/db_routines.lib.php:1036 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" +"Du måste ange Längd / värden rutin parametrar av typen ENUM, SET, VARCHAR " +"och VARBINARY." #: libraries/db_routines.lib.php:1020 msgid "You must provide a name and a type for each routine parameter." -msgstr "" +msgstr "Du måste ange ett namn och en typ för varje rutinparameter." #: libraries/db_routines.lib.php:1077 msgid "You must provide a routine definition." -msgstr "" +msgstr "Du måste ange en rutindefinition." #: libraries/db_routines.lib.php:1209 -#, fuzzy -#| msgid "There are no files to upload" msgid "There are no routines to display." -msgstr "Det finns inga filer att ladda upp" +msgstr "Det finns inga rutiner att visa." #: libraries/db_routines.lib.php:1253 -#, fuzzy -#| msgid "Add index" msgid "Add routine" -msgstr "Lägg till index" +msgstr "Lägg till rutin." #: libraries/db_routines.lib.php:1256 -#, fuzzy -#| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a new routine" -msgstr "Du har inte tillräcklig behörighet för att vara här nu!" +msgstr "Du har inte tillräcklig behörighet för att skapa en ny rutin" #: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2121 msgid "" @@ -4799,6 +4913,23 @@ msgstr "" "Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation)FAQ " "3.11[/a]" +#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 +msgid "Connection for controluser as defined in your configuration failed." +msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades." + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 +#: libraries/dbi/mysqli.dbi.lib.php:395 +msgid "The server is not responding" +msgstr "Servern svarar inte" + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)" + +#: libraries/dbi/mysql.dbi.lib.php:346 +msgid "Details..." +msgstr "Detaljer..." + #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 msgid "Change password" @@ -4937,8 +5068,8 @@ msgstr ", @TABLE@ blir tabellnamnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -5169,15 +5300,15 @@ msgstr "Webbläsaromvandling" #: libraries/display_tbl.lib.php:642 msgid "Geometry" -msgstr "" +msgstr "Geometri" #: libraries/display_tbl.lib.php:643 msgid "Well Known Text" -msgstr "" +msgstr "Välkänd text" #: libraries/display_tbl.lib.php:644 msgid "Well Known Binary" -msgstr "" +msgstr "Välkänd binär" #: libraries/display_tbl.lib.php:1288 msgid "Copy" @@ -5223,7 +5354,7 @@ msgstr "Visa diagram" #: libraries/display_tbl.lib.php:2548 msgid "Visualize GIS data" -msgstr "" +msgstr "Visualisera GIS-data" #: libraries/display_tbl.lib.php:2568 msgid "Create view" @@ -5234,27 +5365,23 @@ msgid "Link not found" msgstr "Länken hittades inte" #: libraries/display_triggers.inc.php:35 -#, fuzzy, php-format -#| msgid "Export contents" +#, php-format msgid "Export of trigger %s" -msgstr "Exportera innehåll" +msgstr "Exportera trigger %s" #: libraries/display_triggers.inc.php:39 #, php-format msgid "Export of trigger \"%s\"" -msgstr "" +msgstr "Exportera trigger \"%s\"" #: libraries/display_triggers.inc.php:47 -#, fuzzy, php-format -#| msgid "No valid image path for theme %s found!" +#, php-format msgid "No trigger with name %s found" -msgstr "Ingen giltig sökväg för tema %s hittades!" +msgstr "Ingen trigger med namn %s hittad" #: libraries/display_triggers.inc.php:64 libraries/display_triggers.inc.php:66 -#, fuzzy -#| msgid "There are no files to upload" msgid "There are no triggers to display." -msgstr "Det finns inga filer att ladda upp" +msgstr "Det finns inga triggers att visa" #: libraries/display_triggers.inc.php:77 server_status.php:800 sql.php:936 msgid "Time" @@ -5265,10 +5392,8 @@ msgid "Event" msgstr "Händelse" #: libraries/display_triggers.inc.php:120 -#, fuzzy -#| msgid "Add a new server" msgid "Add a trigger" -msgstr "Lägg till en ny server" +msgstr "Lägg till en ny Trigger" #: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" @@ -5709,11 +5834,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%" -"s." +"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" +"%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -6015,55 +6140,14 @@ msgstr "Vy" msgid "Export contents" msgstr "Exportera innehåll" -#: libraries/File.class.php:310 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" -"Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini." - -#: libraries/File.class.php:313 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" -"Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades " -"i HTML-formuläret." - -#: libraries/File.class.php:316 -msgid "The uploaded file was only partially uploaded." -msgstr "Den uppladdade filen blev endast delvis uppladdad." - -#: libraries/File.class.php:319 -msgid "Missing a temporary folder." -msgstr "Saknar en temporär katalog." - -#: libraries/File.class.php:322 -msgid "Failed to write file to disk." -msgstr "Misslyckades att skriva fil till disk." - -#: libraries/File.class.php:325 -msgid "File upload stopped by extension." -msgstr "Filuppladdning stoppades av tillägg." - -#: libraries/File.class.php:328 -msgid "Unknown error in file upload." -msgstr "Okänt fel i filuppladdning." - -#: libraries/File.class.php:559 -msgid "" -"Error moving the uploaded file, see [a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11" - #: libraries/footer.inc.php:188 libraries/footer.inc.php:191 #: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Öppna nytt phpMyAdmin-fönster" #: libraries/gis_visualization.lib.php:129 -#, fuzzy -#| msgid "No data found for the chart." msgid "No data found for GIS visualization." -msgstr "Resultat saknas för tabell." +msgstr "Inga data finns för GIS visualisering." #: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54 msgid "SQL result" @@ -6073,6 +6157,42 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genererad av" +#: libraries/import.lib.php:1141 +msgid "" +"The following structures have either been created or altered. Here you can:" +msgstr "Följande strukturer har antingen skapats eller ändrats. Här kan du" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Visa en strukturs innehåll genom att klicka på dess namn" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" +"Ändra någon av inställningarna genom att klicka på motsvarande \"Alternativ" +"\" länk" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Redigera dess struktur genom att följa \"Struktur\" länken" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Gå till databas" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "inställningar" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Gå till tabell" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Gå till vy" + #: libraries/import/csv.php:38 libraries/import/ods.php:26 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 msgid "" @@ -6139,42 +6259,6 @@ msgstr "Kolumn-namn" msgid "This plugin does not support compressed imports!" msgstr "Detta tillägg stöder inte komprimerade importer!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Följande strukturer har antingen skapats eller ändrats. Här kan du" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Visa en strukturs innehåll genom att klicka på dess namn" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Ändra någon av inställningarna genom att klicka på motsvarande \"Alternativ" -"\" länk" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Redigera dess struktur genom att följa \"Struktur\" länken" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Gå till databas" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "inställningar" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Gå till tabell" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Gå till vy" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6186,55 +6270,19 @@ msgstr "Importera valutor (t.ex. $5.00 to 5.00)" #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" -msgstr "SQL kompatibilitetsläge:" - -#: libraries/import/sql.php:43 -msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "Använd inte AUTO_INCREMENT för nollvärden" - -#: libraries/import/xml.php:74 libraries/import/xml.php:130 -msgid "" -"The XML file specified was either malformed or incomplete. Please correct " -"the issue and try again." -msgstr "" -"Den angivna XML-filen var antingen felaktig eller ofullständig. Korrigera " -"problemet och försök igen." - -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Inga index är definierade!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unik" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Packad" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Kardinalitet" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Den primära nyckeln har tagits bort" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Index %s har tagits bort" +msgstr "SQL kompatibilitetsläge:" -#: libraries/Index.class.php:582 -#, php-format +#: libraries/import/sql.php:43 +msgid "Do not use AUTO_INCREMENT for zero values" +msgstr "Använd inte AUTO_INCREMENT för nollvärden" + +#: libraries/import/xml.php:74 libraries/import/xml.php:130 msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." +"The XML file specified was either malformed or incomplete. Please correct " +"the issue and try again." msgstr "" -"Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas " -"bort." +"Den angivna XML-filen var antingen felaktig eller ofullständig. Korrigera " +"problemet och försök igen." #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" @@ -6246,27 +6294,6 @@ msgstr "Inget" msgid "Convert to Kana" msgstr "Konvertera till Kana" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d rad påverkad." -msgstr[1] "%1$d rader påverkade." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d rad borttagen." -msgstr[1] "%1$d rader borttagna." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d rad infogad." -msgstr[1] "%1$d rader infogade." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "Från" @@ -6505,18 +6532,6 @@ msgstr "Ladda om navigering ram" msgid "This format has no options" msgstr "Detta format har inga alternativ" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Kunde inte spara den senaste tabellen" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "De senaste tabellerna" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Det finns inga nya tabeller" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Inte OK" @@ -6901,6 +6916,61 @@ msgstr "Skillnad" msgid "Target database" msgstr "Måldatabas" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "Kör SQL-fråga/frågor på server %s" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "Kör SQL-fråga/frågor i databasen %s" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Rensa" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Kolumn" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Skapa bokmärke för den här SQL-frågan" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Låt varje användare få tillgång till detta bokmärke" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Ersätt befintligt bokmärke med samma namn" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Skriv inte över denna fråga utifrån detta fönster" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Avgränsare" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Visa frågan här igen " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Visa endast" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Textfilens plats" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "Uppladdningskatalog på webbserver" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6964,61 +7034,6 @@ msgstr "Ogiltig identifierare" msgid "Unknown Punctuation String" msgstr "Okänd interpunktion i sträng" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "Kör SQL-fråga/frågor på server %s" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "Kör SQL-fråga/frågor i databasen %s" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Rensa" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Kolumn" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Skapa bokmärke för den här SQL-frågan" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Låt varje användare få tillgång till detta bokmärke" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Ersätt befintligt bokmärke med samma namn" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Skriv inte över denna fråga utifrån detta fönster" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Avgränsare" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Visa frågan här igen " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Visa endast" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Textfilens plats" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "Uppladdningskatalog på webbserver" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7028,50 +7043,6 @@ msgstr "" "SQL-validatorn kunde inte initieras. Kontrollera om du har installerat de " "nödvändiga PHP-tilläggen enligt %sdokumentationen%s." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "" -"Det finns ingen detaljerad statusinformation tillgänglig för denna " -"lagringsmotor." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s är tillgänglig på denna MySQL-server." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s har inaktiverats på denna MySQL-server." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Ogiltig databas" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Ogiltigt tabellnamn" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "Fel vid namnbyte av tabell %1$s till %2$s" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Tabell %s har döpts om till %s" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Kunde inte spara UI inställningarna för tabellen" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Tabellen verkar vara tom!" @@ -7192,38 +7163,6 @@ msgstr "Partitionsdefinition" msgid "+ Add a value" msgstr "+ Lägg till ett nytt värde" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "Ingen giltig sökväg för tema %s hittades!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Ingen förhandsgranskning tillgänglig." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "använd detta" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Standardtema %s hittades inte!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "Tema %s hittades inte!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "Temats sökväg för tema %s hittades inte!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7551,8 +7490,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" -"s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " +"%s. Detta kan orsaka oförutsägbara beteenden." #: main.php:341 #, php-format @@ -8263,8 +8202,8 @@ msgstr "Ta bort databaserna med samma namn som användarna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s " "privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från " @@ -8547,20 +8486,18 @@ msgid "Refresh rate" msgstr "Uppdateringsfrekvens" #: server_status.php:31 -#, fuzzy, php-format -#| msgid "minutes" +#, php-format msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "minuter" -msgstr[1] "minuter" +msgstr[0] "%d minut" +msgstr[1] "%d minuter" #: server_status.php:33 -#, fuzzy, php-format -#| msgid "second" +#, php-format msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "Sekund" -msgstr[1] "Sekund" +msgstr[0] "%d sekund" +msgstr[1] "%d sekunder" #: server_status.php:134 #, php-format @@ -8643,10 +8580,8 @@ msgid "All status variables" msgstr "Alla statusvariabler" #: server_status.php:413 server_status.php:439 -#, fuzzy -#| msgid "Refresh rate" msgid "Refresh rate:" -msgstr "Uppdateringsfrekvens" +msgstr "Uppdateringsfrekvens:" #: server_status.php:462 msgid "Containing the word:" @@ -9533,7 +9468,7 @@ msgstr "" #: server_variables.php:58 msgid "Setting variable failed" -msgstr "" +msgstr "Definiering av variabel misslyckades" #: server_variables.php:77 msgid "Server variables and settings" @@ -9809,8 +9744,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %" -"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " +"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - " +"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " "kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där " "tusentals användare, inklusive dig, är anslutna till" @@ -10035,10 +9970,8 @@ msgid "View dump (schema) of table" msgstr "Visa SQL-satser för tabellen" #: tbl_gis_visualization.php:111 -#, fuzzy -#| msgid "Display servers selection" msgid "Display GIS Visualization" -msgstr "Visa serverval" +msgstr "Visa GIS Visualisering" #: tbl_gis_visualization.php:157 msgid "Width" @@ -10049,42 +9982,32 @@ msgid "Height" msgstr "Höjd" #: tbl_gis_visualization.php:165 -#, fuzzy -#| msgid "Textarea columns" msgid "Label column" -msgstr "Textarea kolumner" +msgstr "Etikett kolumn" #: tbl_gis_visualization.php:167 -#, fuzzy -#| msgid "- none -" msgid "-- None --" -msgstr "- ingen -" +msgstr " - Inget -" #: tbl_gis_visualization.php:180 -#, fuzzy -#| msgid "Total count" msgid "Spatial column" -msgstr "Totalt antal" +msgstr "Spatial kolumn" #: tbl_gis_visualization.php:201 msgid "Use OpenStreetMaps as Base Layer" -msgstr "" +msgstr "Använd OpenStreetMaps som baslager" #: tbl_gis_visualization.php:204 msgid "Redraw" msgstr "Rita om" #: tbl_gis_visualization.php:206 -#, fuzzy -#| msgid "Save as file" msgid "Save to file" -msgstr "Spara som fil" +msgstr "Spara till fil" #: tbl_gis_visualization.php:207 -#, fuzzy -#| msgid "Table name" msgid "File name" -msgstr "Tabellnamn" +msgstr "Filnamn" #: tbl_indexes.php:66 msgid "The name of the primary key must be \"PRIMARY\"!" @@ -10329,7 +10252,7 @@ msgstr "Visningsordning:" #: tbl_structure.php:158 tbl_structure.php:163 tbl_structure.php:611 msgid "Spatial" -msgstr "" +msgstr "Spatial" #: tbl_structure.php:165 tbl_structure.php:169 msgid "Browse distinct values" @@ -10348,10 +10271,8 @@ msgid "Add unique index" msgstr "Lägg till unikt index" #: tbl_structure.php:176 tbl_structure.php:177 -#, fuzzy -#| msgid "Add index" msgid "Add SPATIAL index" -msgstr "Lägg till index" +msgstr "Lägg till SPATIAL index" #: tbl_structure.php:178 tbl_structure.php:179 msgid "Add FULLTEXT index" diff --git a/po/ta.po b/po/ta.po index a3e434106838..3cb35a82bf20 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" +"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "தேடல்" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "தேடல்" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "செல் " @@ -120,7 +120,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "" @@ -130,9 +130,9 @@ msgstr "" msgid "Table comments" msgstr "" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -141,12 +141,12 @@ msgstr "" msgid "Column" msgstr "" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -156,9 +156,9 @@ msgstr "" msgid "Type" msgstr "" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -196,13 +196,12 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -213,17 +212,17 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -260,79 +259,79 @@ msgstr "" msgid "The database name is empty!" msgstr "" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "தடைகளை சேர்க்க" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -341,14 +340,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "" @@ -498,97 +497,97 @@ msgstr "" msgid "Submit Query" msgstr "" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, php-format msgid "No routine with name %1$s found in database %2$s" msgstr "" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" msgstr "" @@ -5900,40 +6041,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -5944,27 +6051,6 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d வரிசை மாற்றப்பட்டுள்ளது" -msgstr[1] "%1$d வரிசைகள் மாற்றப்பட்டுள்ளன" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d வரிசை அகற்றப்பட்டுள்ளது" -msgstr[1] "%1$d வரிசைகள் அகற்றப்பட்டுள்ளன" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d வரிசை சேர்க்கப்பட்டுள்ளது" -msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்டுள்ளன" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6205,20 +6291,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Display table filter" -msgid "Recent tables" -msgstr "கருதிட்குள் சேர்க்க" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "" @@ -6590,57 +6662,6 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6696,53 +6717,62 @@ msgstr "" msgid "web server upload directory" msgstr "" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" msgstr "" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" msgstr "" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" msgstr "" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -6854,38 +6884,6 @@ msgstr "" msgid "+ Add a value" msgstr "புதிய பயனாளரை சேர்க்க" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7836,8 +7834,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/te.po b/po/te.po index d5ae2a464688..781da0d5e682 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" +"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "శోధించు" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "శోధించు" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "వెళ్ళు" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "డేటాబేస్ వ్యాఖ్య:" @@ -132,9 +132,9 @@ msgid "Table comments" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -145,12 +145,12 @@ msgstr "పట్టిక వ్యాఖ్యలు" msgid "Column" msgstr "ఆజ్ఞ" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -160,9 +160,9 @@ msgstr "ఆజ్ఞ" msgid "Type" msgstr "రకం" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -200,13 +200,12 @@ msgstr "" msgid "Comments" msgstr "వ్యాఖ్యలు" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -217,17 +216,17 @@ msgstr "వ్యాఖ్యలు" msgid "No" msgstr "కాదు" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -265,81 +264,81 @@ msgstr "అన్నీ ఎంచుకోవద్దు" msgid "The database name is empty!" msgstr "డేటాబేస్ పేరు ఖాళీగా ఉన్నది" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "%s డేటాబేస్ %s డేటాబేస్ కు కాపీ అయింది" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి" # మొదటి అనువాదము -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "ఆజ్ఞ" # మొదటి అనువాదము -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "డేటాబేస్ తొలగించండి" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "డేటాబేస్ ను తుడిచివేయి" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "నిర్మాణం మాత్రమే" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "నిర్మాణం, మరియు డేటా" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "డేటా మాత్రమే" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "కాపీ చేయబోయే ముందు డేటాబేస్ సృష్టించు" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%s cErcu" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -348,14 +347,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "" @@ -505,104 +504,104 @@ msgstr "" msgid "Submit Query" msgstr "క్వెరీ ని సమర్పించు" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర్వహించబడింది" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Routine %1$s has been modified." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" # మొదటి అనువాదము -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Page has been created" msgid "Routine %1$s has been created." msgstr "పుటను సృష్టించడమైనది" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" # మొదటి అనువాదము -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create" msgid "Create routine" msgstr "సృష్టించు" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" msgstr "" @@ -5969,40 +6115,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6013,27 +6125,6 @@ msgstr "ఏమీలేదు" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6286,24 +6377,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Server configuration" -msgid "Could not save recent table" -msgstr "సేవకి స్వరూపణం" - -# మొదటి అనువాదము -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgctxt "short form" -#| msgid "Create table" -msgid "Recent tables" -msgstr "పట్టికను సృష్టించు" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "" @@ -6675,57 +6748,6 @@ msgstr "తేడా" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6783,53 +6805,62 @@ msgstr "పాఠ్యపు దస్త్రం యొక్క ప్రా msgid "web server upload directory" msgstr "" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" msgstr "" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" msgstr "" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" msgstr "" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -6944,39 +6975,6 @@ msgstr "" msgid "+ Add a value" msgstr "క్రొత్త వినియోగదారుని చేర్చు" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -# మొదటి అనువాదము -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "తీసుకొనుము" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7953,8 +7951,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/th.po b/po/th.po index eb270bbc1f66..cd169e96d0a1 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -43,13 +43,13 @@ msgstr "" msgid "Search" msgstr "ค้นหา" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -62,18 +62,18 @@ msgstr "ค้นหา" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "ลงมือ" @@ -118,7 +118,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " @@ -128,9 +128,9 @@ msgstr "หมายเหตุของฐานข้อมูล: " msgid "Table comments" msgstr "หมายเหตุของตาราง" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -141,12 +141,12 @@ msgstr "หมายเหตุของตาราง" msgid "Column" msgstr "ชื่อคอลัมน์" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -156,9 +156,9 @@ msgstr "ชื่อคอลัมน์" msgid "Type" msgstr "ชนิด" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -196,13 +196,12 @@ msgstr "เชื่อมไปยัง" msgid "Comments" msgstr "หมายเหตุ" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -213,17 +212,17 @@ msgstr "หมายเหตุ" msgid "No" msgstr "ไม่" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -260,79 +259,79 @@ msgstr "ไม่เลือกเลย" msgid "The database name is empty!" msgstr "ไม่มีชื่อฐานข้อมูล" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "ฐานข้อมูล %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "คัดลอกฐานข้อมูล %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "คำสั่ง" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "เอาฐานข้อมูลออก" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "โยนฐานข้อมูลทิ้ง" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "คัดลอกฐานข้อมูลเป็น" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "เฉพาะข้อมูล" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "สร้างฐานข้อมูลก่อนคัดลอก" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "เพิ่ม %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "เพิ่ม constraints" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "สลับไปยังฐานข้อมูลที่ถูกทำสำเนาไว้" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -341,14 +340,14 @@ msgstr "สลับไปยังฐานข้อมูลที่ถูก msgid "Collation" msgstr "การเรียงลำดับ" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ คลิก %shere%s เพื่อหาสาเหตุ" -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา" @@ -499,102 +498,102 @@ msgstr "คำค้นบนฐานข้อมูล %s:" msgid "Submit Query" msgstr "ประมวลผลคำค้น" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL แสดง: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "โพรเซส" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "รุ่นของเซิร์ฟเวอร์" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "ไม่มีฐานข้อมูล" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." msgstr "" #: libraries/import/csv.php:42 @@ -6127,41 +6306,6 @@ msgstr "ชื่อคอลัมน์" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "ไม่มีฐานข้อมูล" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6184,40 +6328,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "เอกลักษณ์" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Cardinality" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "โยนไพรมารีคีย์ทิ้งไปเรียบร้อยแล้ว" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6230,29 +6340,6 @@ msgstr "ไม่มี" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "ยังไม่ได้เลือกแถว" -msgstr[1] "ยังไม่ได้เลือกแถว" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "ยังไม่ได้เลือกแถว" -msgstr[1] "ยังไม่ได้เลือกแถว" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6498,21 +6585,6 @@ msgstr "" msgid "This format has no options" msgstr "รูปแบบนี้ไม่มีตัวเลือก" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "ไม่มีตาราง" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "Tracked tables" -msgid "There are no recent tables" -msgstr "ตารางที่ถูกติดตาม" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "ไม่ตกลง" @@ -6904,67 +6976,6 @@ msgstr "" msgid "Target database" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"อาจจะมีข้อผิดพลาดบางอย่างในคำค้น SQL ของคุณ. หาก MySQL server " -"ได้แจ้งข้อผิดพลาดมาด้านล่างนี้ ให้ลองอ่านดู มันอาจจะช่วยให้คุณวินิจฉัยปัญหาได้ดีขึ้น" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"อาจจะมีการเปลี่ยนแปลงบางอย่าง ที่คุณพบว่ามันเป็นข้อผิดพลาดของตัวอ่านคำสั่ง SQL. " -"กรุณาตรวจสอบคำค้นของคุณให้ถี่ถ้วน โดยเฉพาะการเปิด/ปิดเครื่องหมายคำพูด (quotes) ให้ถูกต้อง. " -"อีกสาเหตุหนึ่งที่เป็นไปได้คือ คุณอาจจะอัพโหลดแฟ้มไบนารีข้างนอกช่วงของเครื่องหมายคำพูด. " -"คุณสามารถที่จะลองคำค้นของคุณที่คอมมานด์ไลน์ของ MySQL ซึ่งคุณอาจจะพบข้อผิดพลาดบางอย่างในนั้น. " -"หากเซิร์ฟเวอร์ MySQL แจ้งข้อผิดพลาดมา, ให้ลองอ่านดู มันอาจจะช่วยให้คุณวินิจฉัยปัญหาได้ดีขึ้น. " -"ถ้าคุณยังพบปัญหากับ parser ใน phpMyAdmin อยู่ แต่ไม่พบปัญหากับ parser ในคอมมานด์ไลน์, " -"ให้ลองลดความยาวของคำค้น SQL ลง จนกระทั่งเหลือคำค้น SQL เดี่ยวๆ ที่ยังทำให้เกิดปัญหาอยู่อีก, " -"แล้วแจ้งข้อผิดพลาดดังกล่าวมาที่เรา, ส่งมันมาพร้อมกับตัวข้อมูลที่คุณค้น ซึ่งได้จากส่วนของ CUT ด้านล่าง." - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "เริ่มจุดตัด" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "สิ้นสุดจุดตัด" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "เริ่มข้อมูลดิบ" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "สิ้นสุดข้อมูลดิบ" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "ไม่ได้ปิดเครื่องหมายคำพูด" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "ชื่อตัวแปรไม่ถูกต้อง" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "มีเครื่องหมายวรรคตอนที่ไม่รู้จัก" - #: libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -7023,56 +7034,75 @@ msgstr "เลือกไฟล์ข้อความจาก" msgid "web server upload directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น " -"ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว" +"อาจจะมีข้อผิดพลาดบางอย่างในคำค้น SQL ของคุณ. หาก MySQL server " +"ได้แจ้งข้อผิดพลาดมาด้านล่างนี้ ให้ลองอ่านดู มันอาจจะช่วยให้คุณวินิจฉัยปัญหาได้ดีขึ้น" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" +"อาจจะมีการเปลี่ยนแปลงบางอย่าง ที่คุณพบว่ามันเป็นข้อผิดพลาดของตัวอ่านคำสั่ง SQL. " +"กรุณาตรวจสอบคำค้นของคุณให้ถี่ถ้วน โดยเฉพาะการเปิด/ปิดเครื่องหมายคำพูด (quotes) ให้ถูกต้อง. " +"อีกสาเหตุหนึ่งที่เป็นไปได้คือ คุณอาจจะอัพโหลดแฟ้มไบนารีข้างนอกช่วงของเครื่องหมายคำพูด. " +"คุณสามารถที่จะลองคำค้นของคุณที่คอมมานด์ไลน์ของ MySQL ซึ่งคุณอาจจะพบข้อผิดพลาดบางอย่างในนั้น. " +"หากเซิร์ฟเวอร์ MySQL แจ้งข้อผิดพลาดมา, ให้ลองอ่านดู มันอาจจะช่วยให้คุณวินิจฉัยปัญหาได้ดีขึ้น. " +"ถ้าคุณยังพบปัญหากับ parser ใน phpMyAdmin อยู่ แต่ไม่พบปัญหากับ parser ในคอมมานด์ไลน์, " +"ให้ลองลดความยาวของคำค้น SQL ลง จนกระทั่งเหลือคำค้น SQL เดี่ยวๆ ที่ยังทำให้เกิดปัญหาอยู่อีก, " +"แล้วแจ้งข้อผิดพลาดดังกล่าวมาที่เรา, ส่งมันมาพร้อมกับตัวข้อมูลที่คุณค้น ซึ่งได้จากส่วนของ CUT ด้านล่าง." -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "เริ่มจุดตัด" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "สิ้นสุดจุดตัด" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "เริ่มข้อมูลดิบ" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "สิ้นสุดข้อมูลดิบ" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "ไม่ได้ปิดเครื่องหมายคำพูด" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "ชื่อตัวแปรไม่ถูกต้อง" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "มีเครื่องหมายวรรคตอนที่ไม่รู้จัก" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น " +"ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7196,38 +7226,6 @@ msgstr "" msgid "+ Add a value" msgstr "เพิ่มผู้ใช้ใหม่" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8255,8 +8253,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -10561,8 +10559,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%" -#~ "s" +#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere" +#~ "%s" #~ msgid "No tables" #~ msgstr "ไม่มีตาราง" diff --git a/po/tr.po b/po/tr.po index 16a314cbc5bb..920f7b365d3e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" -"PO-Revision-Date: 2011-06-23 19:35+0200\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" +"PO-Revision-Date: 2011-06-25 13:38+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Ara" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Ara" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Git" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Veritabanı yorumu: " @@ -132,9 +132,9 @@ msgstr "Veritabanı yorumu: " msgid "Table comments" msgstr "Tablo yorumları" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Tablo yorumları" msgid "Column" msgstr "Sütun" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Sütun" msgid "Type" msgstr "Türü" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Bağlantı verilen" msgid "Comments" msgstr "Yorumlar" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Yorumlar" msgid "No" msgstr "Hayır" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "Tüm Seçimi Kaldır" msgid "The database name is empty!" msgstr "Veritabanı adı boş!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "%s veritabanı %s olarak yeniden adlandırıldı" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "%s veritabanı %s veritabanına kopyalandı" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Komut" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Veritabanını kaldır" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "%s veritabanı kaldırıldı." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Veritabanını kaldır (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Veritabanını şuraya kopyala:" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Sadece yapı" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Yapı ve veri" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Sadece veri" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%s ekle" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Kısıtlamaları ekle" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Kopyalanmış veritabanına geç" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,7 +342,7 @@ msgstr "Kopyalanmış veritabanına geç" msgid "Collation" msgstr "Karşılaştırma" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -352,7 +351,7 @@ msgstr "" "phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. Nedenini öğrenmek " "için %sburaya%s tıklayın." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Bağlantılı şemayı dışa aktar veya düzenle" @@ -497,97 +496,96 @@ msgstr "%s veritabanındaki SQL sorgusu:" msgid "Submit Query" msgstr "Sorguyu Gönder" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL sorgunuz başarılı olarak çalıştırıldı" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "İşlemin içindeki son ifade tarafından %d satır etkilendi" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "%s yordamı çalıştırma sonuçları" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (örn. sıfır satır)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 -#, fuzzy, php-format +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 +#, php-format msgid "The following query has failed: \"%s\"" -msgstr "Sorgu \"%s\" başarısız oldu" +msgstr "Aşağıdaki sorgu başarısız oldu: \"%s\"" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "İstek işlemede hata" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 -#, fuzzy, php-format -#| msgid "No routine with name %s found in database %s" +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 +#, php-format msgid "No routine with name %1$s found in database %2$s" -msgstr "%s veritabanında %s adıyla yordam bulunamadı" +msgstr "%1$s veritabanında %2$s adıyla yordam bulunamadı" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "Yordamı çalıştır" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "%s yordamını dışa aktarma" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Geçersiz yordam türü: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "Üzgünüm, kaldırılmış yordamı geri yükleme başarısız oldu." -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "Yedeklenmiş sorgu:" -#: db_routines.php:314 +#: db_routines.php:316 #, php-format msgid "Routine %1$s has been modified." msgstr "Yordam %1$s değiştirildi." -#: db_routines.php:327 +#: db_routines.php:329 #, php-format msgid "Routine %1$s has been created." msgstr "Yordam %1$s oluşturuldu." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:" -#: db_routines.php:379 +#: db_routines.php:381 msgid "Create routine" msgstr "Yordam oluştur" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "Yordamı düzenle" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!%s seçin:" msgid "The directory you set for upload work cannot be reached" msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor" -#: libraries/common.lib.php:2936 -msgid "There are no files to upload" -msgstr "Göndermek için dosyalar yok" +#: libraries/common.lib.php:2936 +msgid "There are no files to upload" +msgstr "Göndermek için dosyalar yok" + +#: libraries/common.lib.php:2964 libraries/common.lib.php:2965 +msgid "Execute" +msgstr "Çalıştır" + +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 +msgid "Both" +msgstr "Her ikisi" + +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "Hiçbir yeri" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "Sol" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "Sağ" + +#: libraries/config.values.php:75 +msgid "Open" +msgstr "Açık" + +#: libraries/config.values.php:75 +msgid "Closed" +msgstr "Kapandı" + +#: libraries/config.values.php:96 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:122 libraries/export/texytext.php:24 +#: libraries/import.lib.php:1172 +msgid "structure" +msgstr "yapı" + +#: libraries/config.values.php:97 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:123 libraries/export/texytext.php:24 +msgid "data" +msgstr "veri" + +#: libraries/config.values.php:98 libraries/export/htmlword.php:25 +#: libraries/export/latex.php:42 libraries/export/odt.php:34 +#: libraries/export/sql.php:124 libraries/export/texytext.php:24 +msgid "structure and data" +msgstr "yapı ve veri" + +#: libraries/config.values.php:100 +msgid "Quick - display only the minimal options to configure" +msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster" + +#: libraries/config.values.php:101 +msgid "Custom - display all possible options to configure" +msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster" + +#: libraries/config.values.php:102 +msgid "Custom - like above, but without the quick/custom choice" +msgstr "Özel - yukarıdaki gibi ancak hızlı/özel seçimsiz" + +#: libraries/config.values.php:120 +msgid "complete inserts" +msgstr "tam eklemeler" + +#: libraries/config.values.php:121 +msgid "extended inserts" +msgstr "genişletilmiş eklemeler" -#: libraries/common.lib.php:2964 libraries/common.lib.php:2965 -msgid "Execute" -msgstr "Çalıştır" +#: libraries/config.values.php:122 +msgid "both of the above" +msgstr "yukarıdakinin ikisi birden" -#: libraries/Config.class.php:1190 -msgid "Font size" -msgstr "Yazı Tipi boyutu" +#: libraries/config.values.php:123 +msgid "neither of the above" +msgstr "yukarıdakinin hiçbiri" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 @@ -2801,12 +3062,6 @@ msgstr "İçe ve dışa aktarma dizinlerini ve sıkıştırma seçeneklerini aya msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430 -#: libraries/server_links.inc.php:43 server_databases.php:100 -#: server_privileges.php:1740 -msgid "Databases" -msgstr "Veritabanları" - #: libraries/config/messages.inc.php:178 msgid "Databases display options" msgstr "Veritabanlarının görüntü seçenekleri" @@ -4446,78 +4701,6 @@ msgstr "pmadb kullanan boş phpMyAdmin denetim kullanıcısı parolası" msgid "Incorrect IP address: %s" msgstr "Yanlış IP adresi: %s" -#: libraries/config.values.php:45 libraries/config.values.php:47 -#: libraries/config.values.php:51 -msgid "Both" -msgstr "Her ikisi" - -#: libraries/config.values.php:47 -msgid "Nowhere" -msgstr "Hiçbir yeri" - -#: libraries/config.values.php:47 -msgid "Left" -msgstr "Sol" - -#: libraries/config.values.php:47 -msgid "Right" -msgstr "Sağ" - -#: libraries/config.values.php:75 -msgid "Open" -msgstr "Açık" - -#: libraries/config.values.php:75 -msgid "Closed" -msgstr "Kapandı" - -#: libraries/config.values.php:96 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:122 libraries/export/texytext.php:24 -#: libraries/import.lib.php:1172 -msgid "structure" -msgstr "yapı" - -#: libraries/config.values.php:97 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:123 libraries/export/texytext.php:24 -msgid "data" -msgstr "veri" - -#: libraries/config.values.php:98 libraries/export/htmlword.php:25 -#: libraries/export/latex.php:42 libraries/export/odt.php:34 -#: libraries/export/sql.php:124 libraries/export/texytext.php:24 -msgid "structure and data" -msgstr "yapı ve veri" - -#: libraries/config.values.php:100 -msgid "Quick - display only the minimal options to configure" -msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster" - -#: libraries/config.values.php:101 -msgid "Custom - display all possible options to configure" -msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster" - -#: libraries/config.values.php:102 -msgid "Custom - like above, but without the quick/custom choice" -msgstr "Özel - yukarıdaki gibi ancak hızlı/özel seçimsiz" - -#: libraries/config.values.php:120 -msgid "complete inserts" -msgstr "tam eklemeler" - -#: libraries/config.values.php:121 -msgid "extended inserts" -msgstr "genişletilmiş eklemeler" - -#: libraries/config.values.php:122 -msgid "both of the above" -msgstr "yukarıdakinin ikisi birden" - -#: libraries/config.values.php:123 -msgid "neither of the above" -msgstr "yukarıdakinin hiçbiri" - #. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. #: libraries/core.lib.php:264 msgctxt "PHP documentation language" @@ -4583,25 +4766,6 @@ msgstr "Kapat" msgid "Add an event" msgstr "Yeni bir Olay ekle" -#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 -msgid "Connection for controluser as defined in your configuration failed." -msgstr "" -"Yapılandırma dosyanız içinde tanımlanmış denetim kullanıcıları için bağlantı " -"başarısız oldu." - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 -#: libraries/dbi/mysqli.dbi.lib.php:395 -msgid "The server is not responding" -msgstr "Sunucu yanıt vermiyor" - -#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)" - -#: libraries/dbi/mysql.dbi.lib.php:346 -msgid "Details..." -msgstr "Ayrıntılar..." - #: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 #: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" @@ -4669,9 +4833,9 @@ msgstr "Uzunluk/Değerler" #: libraries/export/php_array.php:29 libraries/export/sql.php:83 #: libraries/export/texytext.php:31 libraries/export/xls.php:29 #: libraries/export/xlsx.php:29 libraries/export/xml.php:25 -#: libraries/export/yaml.php:30 libraries/import/csv.php:33 +#: libraries/export/yaml.php:30 libraries/import.lib.php:1145 +#: libraries/import.lib.php:1167 libraries/import/csv.php:33 #: libraries/import/docsql.php:35 libraries/import/ldi.php:49 -#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/ods.php:32 libraries/import/sql.php:20 #: libraries/import/xls.php:28 libraries/import/xlsx.php:28 #: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889 @@ -4718,11 +4882,6 @@ msgstr "Güvenlik türü" msgid "SQL data access" msgstr "SQL veri erişimi" -#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452 -#: tbl_tracking.php:272 tbl_tracking.php:321 -msgid "Comment" -msgstr "Yorum" - #: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842 msgid "Routine parameters" msgstr "Yordam parametreleri" @@ -4783,6 +4942,25 @@ msgstr "" "Yaklaşık olabilir. [a@./Documentation.html#faq3_11@Documentation]SSS 3.11[/" "a]'e bakın" +#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 +msgid "Connection for controluser as defined in your configuration failed." +msgstr "" +"Yapılandırma dosyanız içinde tanımlanmış denetim kullanıcıları için bağlantı " +"başarısız oldu." + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339 +#: libraries/dbi/mysqli.dbi.lib.php:395 +msgid "The server is not responding" +msgstr "Sunucu yanıt vermiyor" + +#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)" + +#: libraries/dbi/mysql.dbi.lib.php:346 +msgid "Details..." +msgstr "Ayrıntılar..." + #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 msgid "Change password" @@ -4922,8 +5100,8 @@ msgstr ", @TABLE@ tablo adı olacaktır" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler " @@ -5698,8 +5876,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." @@ -6007,47 +6185,6 @@ msgstr "Görünümler" msgid "Export contents" msgstr "İçerikleri dışa aktar" -#: libraries/File.class.php:310 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" -"Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor." - -#: libraries/File.class.php:313 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" -"Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini " -"aşıyor." - -#: libraries/File.class.php:316 -msgid "The uploaded file was only partially uploaded." -msgstr "Gönderilen dosya sadece kısmen gönderildi." - -#: libraries/File.class.php:319 -msgid "Missing a temporary folder." -msgstr "Eksik geçici klasör." - -#: libraries/File.class.php:322 -msgid "Failed to write file to disk." -msgstr "Dosyayı diske yazma başarısız." - -#: libraries/File.class.php:325 -msgid "File upload stopped by extension." -msgstr "Dosya gönderme uzantısından dolayı durduruldu." - -#: libraries/File.class.php:328 -msgid "Unknown error in file upload." -msgstr "Dosya göndermede bilinmeyen hata oldu." - -#: libraries/File.class.php:559 -msgid "" -"Error moving the uploaded file, see [a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "" -"Gönderilen dosyayı taşıma hatası, [a@./Documentation." -"html#faq1_11@Documentation]SSS 1.11[/a]'e bakın" - #: libraries/footer.inc.php:188 libraries/footer.inc.php:191 #: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" @@ -6065,6 +6202,42 @@ msgstr "SQL sonucu" msgid "Generated by" msgstr "Üreten:" +#: libraries/import.lib.php:1141 +msgid "" +"The following structures have either been created or altered. Here you can:" +msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "İsmine tıklayarak yapının içeriklerini görüntüleyin" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" +"Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını " +"değiştirin" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Aşağıdaki \"Yapı\" bağlantısıyla bunun yapısını düzenleyin" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Veritabanına git" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "ayarlar" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Tabloya git" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Görünüme git" + #: libraries/import/csv.php:38 libraries/import/ods.php:26 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 msgid "" @@ -6125,47 +6298,11 @@ msgstr "Tablo adı" #: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 #: view_create.php:147 msgid "Column names" -msgstr "Sütun adları" - -#: libraries/import/ldi.php:57 -msgid "This plugin does not support compressed imports!" -msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez!" - -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "İsmine tıklayarak yapının içeriklerini görüntüleyin" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" -"Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını " -"değiştirin" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Aşağıdaki \"Yapı\" bağlantısıyla bunun yapısını düzenleyin" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Veritabanına git" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "ayarlar" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Tabloya git" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Görünüme git" +msgstr "Sütun adları" + +#: libraries/import/ldi.php:57 +msgid "This plugin does not support compressed imports!" +msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez!" #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" @@ -6191,42 +6328,6 @@ msgstr "" "Belirlenmiş XML dosyası ya kusurlu ya da tamamlanmamış. Lütfen sorunu " "düzeltin ve tekrar deneyin." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Tanımlı indeks yok!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Benzersiz" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Paketlendi" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Önemlilik" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Birincil anahtar kaldırıldı" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "%s indeksi kaldırıldı" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün " -"olabilir." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6237,24 +6338,6 @@ msgstr "Yok" msgid "Convert to Kana" msgstr "Kana'ya dönüştür" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d satır etkilendi." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d satır silindi." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d satır eklendi." - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "Buradan" @@ -6493,18 +6576,6 @@ msgstr "Rehber çerçeveyi yeniden yükle" msgid "This format has no options" msgstr "Bu biçim seçeneğe sahip değil" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "Son tablo kaydedilemedi" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "Son tablolar" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "Son tablolar yok" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "TAMAM değil" @@ -6889,6 +6960,61 @@ msgstr "Farkı" msgid "Target database" msgstr "Hedef veritabanı" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "%s sunucusu üzerinde SQL sorgusunu/sorgularını çalıştır" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Temizle" + +#: libraries/sql_query_form.lib.php:301 +msgid "Columns" +msgstr "Sütun" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Bu SQL sorgusunu işaretle" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Mevcut aynı ismin işaretlemesini değiştir" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "Pencere dışından bu sorgunun üzerine yazma" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Sınırlayıcı" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr " Bu sorguyu burada tekrar göster " + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Sadece göster" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Metin dosyasının yeri" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "web sunucusu gönderme dizini" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -6952,61 +7078,6 @@ msgstr "Geçersiz Tanımlayıcı" msgid "Unknown Punctuation String" msgstr "Bilinmeyen Noktalama İşareti Dizgisi" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "%s sunucusu üzerinde SQL sorgusunu/sorgularını çalıştır" - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Temizle" - -#: libraries/sql_query_form.lib.php:301 -msgid "Columns" -msgstr "Sütun" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Bu SQL sorgusunu işaretle" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Mevcut aynı ismin işaretlemesini değiştir" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "Pencere dışından bu sorgunun üzerine yazma" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Sınırlayıcı" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr " Bu sorguyu burada tekrar göster " - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Sadece göster" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Metin dosyasının yeri" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "web sunucusu gönderme dizini" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7016,48 +7087,6 @@ msgstr "" "SQL onaylayıcısı başlatılamadı. %sBelgede%s anlatıldığı gibi lütfen gerekli " "PHP uzantılarının kurulu olduğunu kontrol edin." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Bu depolama motoru için ayrıntılı durum bilgisi mevcut değil." - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s bu MySQL sunucusunda var." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s bu MySQL sunucusu için etkisizleştirildi." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Geçersiz veritabanı" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Geçersiz tablo adı" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "%1$s tablo adını %2$s tablo adına değiştirme hatası" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "%s tablosu %s olarak yeniden adlandırıldı" - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "Tablo KA tercihleri kaydedilemedi" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Tablo boş olarak görünüyor!" @@ -7178,38 +7207,6 @@ msgstr "PARTITION tanımı" msgid "+ Add a value" msgstr "+ Yeni bir değer ekle" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "%s teması için geçerli resim yolu bulunamadı!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Önizleme mevcut değil." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "Al" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "Varsayılan tema %s bulunamadı!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "%s teması bulunamadı!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "%s teması için tema yolu bulunamadı!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "Tema" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8257,8 +8254,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " "tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " @@ -9804,9 +9801,9 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %" -"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. " -"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- " +"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi" +"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " "kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/index.lib.php:268 @@ -9821,8 +9818,8 @@ msgstr "" "[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna " "otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı " "anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya " -"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %" -"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" +"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. " +"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" "kbd] olarak ayarlayın." #: setup/lib/index.lib.php:270 diff --git a/po/tt.po b/po/tt.po index 186c84410fa9..e2b4c84812d9 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" +"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Ezläw" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Ezläw" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Äydä" @@ -120,7 +120,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Biremlek açıqlaması:" @@ -130,9 +130,9 @@ msgstr "Biremlek açıqlaması:" msgid "Table comments" msgstr "Tüşämä açıqlaması" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "Tüşämä açıqlaması" msgid "Column" msgstr "Alan iseme" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "Alan iseme" msgid "Type" msgstr "Töre" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "Bonı belän bäyläneş:" msgid "Comments" msgstr "Açıqlama" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "Açıqlama" msgid "No" msgstr "Yuq" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,82 +261,82 @@ msgstr "Saylanunı Töşer" msgid "The database name is empty!" msgstr "Biremlek iseme buş!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Ämer" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "%s biremlege beterelde." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy msgid "Drop the database (DROP)" msgstr "Biremleklär yuq" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Biremlekne boña kübäyt" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Tözeleşen genä" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Eçtälegen genä" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "%s östäw" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Çikläwlär östise" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Kübäytelgän biremlekkä küçäse" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -346,7 +345,7 @@ msgstr "Kübäytelgän biremlekkä küçäse" msgid "Collation" msgstr "Tezü cayı" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -358,7 +357,7 @@ msgstr "" "Bäyläneştä torğan tüşämä belän eşläp bulmas, östämä eşli-alu sünek tora. Anı " "qabızu öçen, %sbonda çirtäse%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -510,103 +509,103 @@ msgstr "%s biremlegenä SQL-soraw:" msgid "Submit Query" msgstr "Sorawnı Yulla" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL-sorawıñ uñışlı eşkärtelde" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Eçke funksílar eşlätterergä birä." -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL qaytarışı:" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proseslar" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Bu biremlektä ber genä dä tüşämä yuq." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format msgid "Export of routine %s" msgstr "Biremdän alu" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "\"%s\" atlı tüşämä beterelde" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy msgid "Create routine" msgstr "Server söreme" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " +"The following structures have either been created or altered. Here you can:" +msgstr "" + +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +#, fuzzy +msgid "Go to database" +msgstr "Biremleklär yuq" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +#, fuzzy +msgid "Go to table" +msgstr "Biremleklär yuq" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" msgstr "" @@ -6222,42 +6403,6 @@ msgstr "Alan iseme" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -#, fuzzy -msgid "Go to database" -msgstr "Biremleklär yuq" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -#, fuzzy -msgid "Go to table" -msgstr "Biremleklär yuq" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6282,40 +6427,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Açqıç bilgelänmäde!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Qabatsız" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Qabatlanu sanı" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Töp açqıç beterelde" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "\"%s\" digän tezeş salındı" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6328,29 +6439,6 @@ msgstr "Buş" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "Kertemnär sayladı" -msgstr[1] "Kertemnär sayladı" - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "No rows selected" -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "Kertemnär sayladı" -msgstr[1] "Kertemnär sayladı" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6593,22 +6681,6 @@ msgstr "" msgid "This format has no options" msgstr "Bu tözeleşeneñ köyläneşe yuq" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Could not save recent table" -msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -msgid "Recent tables" -msgstr "Berär genä dä tüşämä yuq" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -msgid "There are no recent tables" -msgstr "Tüşämä tikşerü" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "OK tügel" @@ -6998,68 +7070,6 @@ msgstr "" msgid "Target database" msgstr "Biremlektä ezläw: " -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Yabılmağan cäyä" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Tanıtması Yaraqsız" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Unknown Punctuation String" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7118,56 +7128,76 @@ msgstr "SQL-ämerlege belän birem yökläw" msgid "web server upload directory" msgstr "web-server'neñ yökläw törgäge" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" -"squllanmada%s uqıp bula." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Bu saqlaw engine öçen xälät turında centekle belem yuq." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "Bu MySQL serverdä %s bar." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "Bu MySQL serverdä %s sünderelgän bulğan." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Bu MySQL server %s saqlaw enginen totmí." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Yaraqsız biremlek" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Tüşämä adı yaraqsız" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Yabılmağan cäyä" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "\"%s\" tüşämäse \"%s\" itep ataldı" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Tanıtması Yaraqsız" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Unknown Punctuation String" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " +"%squllanmada%s uqıp bula." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7298,38 +7328,6 @@ msgstr "" msgid "+ Add a value" msgstr "Yaña qullanuçı östäw" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "bonı sayla" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "%s digän töp tışlaw tabılmadı!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "%s digän tışlaw tabılmadı!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8421,8 +8419,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " "qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " diff --git a/po/ug.po b/po/ug.po index 53bd2ebf11fd..f91fa9346619 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" +"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -47,13 +47,13 @@ msgstr "" msgid "Search" msgstr "ئىزدەش" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -66,18 +66,18 @@ msgstr "ئىزدەش" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "ئىجرا قىلىش" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "ساندان ئىزاھاتى:" @@ -132,9 +132,9 @@ msgstr "ساندان ئىزاھاتى:" msgid "Table comments" msgstr "جەدۋەل ئىزاھى" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -143,12 +143,12 @@ msgstr "جەدۋەل ئىزاھى" msgid "Column" msgstr "سۆزلەم" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -158,9 +158,9 @@ msgstr "سۆزلەم" msgid "Type" msgstr "تۈرى" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -198,13 +198,12 @@ msgstr "ئۇلانما" msgid "Comments" msgstr "ئىزاھلار" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -215,17 +214,17 @@ msgstr "ئىزاھلار" msgid "No" msgstr "يوق" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -262,79 +261,79 @@ msgstr "تاللاشنى قالدۇرۇش" msgid "The database name is empty!" msgstr "ساندان ئىسمىنى بوش قويماڭ!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "ساندان ئىسمى %s غا ئۆزگەرتىلدى %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "ساندان %s غا كۆچۈرۈلدى %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "بۇيرۇق" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "ساندان %s ئۆچۈرۈلدى." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "تۈزىلىشىنىلا" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "ئۇچۇرنىلا" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "مەجبۇرى قوشۇش" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -343,16 +342,16 @@ msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" msgid "Collation" msgstr "تاسقاش" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" @@ -499,104 +498,104 @@ msgstr "SQL ئىجرا بولۋاتقان ساندان %s:" msgid "Submit Query" msgstr "تاپشۇرۇش" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL جاۋابى:" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 msgid "Error in processing request" msgstr "" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "سانداندا جەدۋەل يوق" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "View %s has been dropped" msgid "Routine %1$s has been modified." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create version" msgid "Create routine" msgstr "نەشىرنى قۇىماق" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "دائىملىق" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import/csv.php:42 -#, fuzzy -#| msgid "Columns terminated by" -msgid "Column names: " -msgstr "خەت ئايرىش بەلگىسى" +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" -#: libraries/import/csv.php:62 libraries/import/csv.php:75 +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +#, fuzzy +#| msgid "Columns terminated by" +msgid "Column names: " +msgstr "خەت ئايرىش بەلگىسى" + +#: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 #, php-format msgid "Invalid parameter for CSV import: %s" @@ -6019,40 +6197,6 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6077,42 +6221,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "index قىممىتى بەلگىلەنمىگەن!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "بىردىنبىر" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "ئىخچام" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "تۈپ سان" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "ئۆچۈرۈلگەن تېزىسلار %s" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6123,24 +6231,6 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d row affected." - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d row deleted." - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d قۇر قوشۇلدى." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6381,24 +6471,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not load default configuration from: %1$s" -msgid "Could not save recent table" -msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Tracked tables" -msgid "Recent tables" -msgstr "ئىزلانغان جەدۋەل" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "Tracked tables" -msgid "There are no recent tables" -msgstr "ئىزلانغان جەدۋەل" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "" @@ -6780,57 +6852,6 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6886,53 +6907,62 @@ msgstr "يىزىق ھۆججەتنىڭ ئورنى" msgid "web server upload directory" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇرلار مەۋجۇت ئەمەس." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولىدۇ." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولمايدۇ." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "ئۈنۈمسىز ساندان" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى." +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى." +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -7039,38 +7069,6 @@ msgstr "" msgid "+ Add a value" msgstr "" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "No valid image path for theme %s found!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "ئالدىن كۆرگىنى بولمايدۇ." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "ئېلىش" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "ئۇسلۇپ ئەندىزسى %s تېپىلمىدى!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "تېما %s تېپىلمىدى!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "ماۋزۇ %s تېپىلمىدى." - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7326,8 +7324,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." #: main.php:314 msgid "" @@ -8058,8 +8056,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/uk.po b/po/uk.po index 9b1e2fd07072..f4dc958a1c34 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-17 10:55+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: ukrainian \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -46,13 +46,13 @@ msgstr "" msgid "Search" msgstr "Шукати" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -65,18 +65,18 @@ msgstr "Шукати" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Вперед" @@ -123,7 +123,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Базу даних %1$s створено." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Коментар бази даних: " @@ -133,9 +133,9 @@ msgstr "Коментар бази даних: " msgid "Table comments" msgstr "Коментар до таблиці" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "Коментар до таблиці" msgid "Column" msgstr "Стовпчик" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "Стовпчик" msgid "Type" msgstr "Тип" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Лінки до" msgid "Comments" msgstr "Коментарі" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "Коментарі" msgid "No" msgstr "Ні" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,79 +262,79 @@ msgstr "Зняти всі відмітки" msgid "The database name is empty!" msgstr "Ім'я бази даних порожнє!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "Базу даних %s перейменовано в %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "Базу даних %s скопійовано в %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Перейменувати базу даних в" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Команда" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "Видалити базу даних" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "Базу даних %s знищено." -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "Знищити базу даних (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Копіювати базу даних в" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Лише структуру" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Структуру і дані" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Лише дані" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Перед копіюванням створити базу даних (CREATE DATABASE)" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "Додати %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "Додати AUTO_INCREMENT значення" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Додати constraints" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Перейти до скопійованої бази даних" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -344,7 +343,7 @@ msgstr "Перейти до скопійованої бази даних" msgid "Collation" msgstr "Порівняння" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -353,7 +352,7 @@ msgstr "" "Сховище конфігурації phpMyAdmin деактивовано. Для того, щоб довідатись чому, " "натисніть %sтут%s." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "Редагувати або експортувати схему зв'язків" @@ -500,14 +499,14 @@ msgstr "SQL-запит до БД %s:" msgid "Submit Query" msgstr "Виконати запит" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запит було успішно виконано" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -515,90 +514,90 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processing Request" msgid "Error in processing request" msgstr "Обробка запиту" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "В БД не виявлено таблиць." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, php-format msgid "Export of routine %s" msgstr "" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Таблицю %s було знищено" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "Базу даних %1$s створено." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create User" msgid "Create routine" msgstr "Створити користувача" -#: db_routines.php:383 +#: db_routines.php:385 msgid "Edit routine" msgstr "" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(ex. 12.00% to .12)" +#: libraries/import/ods.php:28 +msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" #: libraries/import/ods.php:29 @@ -5958,40 +6099,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Індекс не визначено!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Унікальне" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Кількість елементів" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Первинний ключ було знищено" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "Індекс %s було знищено" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6004,27 +6111,6 @@ msgstr "Немає" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6267,20 +6353,6 @@ msgstr "" msgid "This format has no options" msgstr "Цей формат не має опцій" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Select Tables" -msgid "Recent tables" -msgstr "Вибрати таблиці" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "не OK" @@ -6670,70 +6742,6 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"There seems to be an error in your SQL query. Повідомлення MySQL сервера про " -"помилку подане нижче (якщо є таке) також може допомогти Вам у визначенні " -"проблеми." - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"Можливо Ви знайшли помилку в парсері SQL. Прошу детальніше перевірити чи " -"коректно вжиті і не пропущені лапки у Вашому запиті. Іншою можливою причиною " -"помилки може бути те що Ви завантажили файл з двійковими даними розміщеними " -"поза взятим в лапки текстом. Спробуйте виконати Ваш запит за допомогою " -"оболонки MySQL з командної стрічки. Повідомлення MySQL сервера про помилку " -"подане нижче (якщо є таке) також може допомогти Вам у визначенні проблеми. " -"Якщо у Вас все ще виникають проблеми чи парсер видає помилку, а з командної " -"стрічки запити виконуються, прошу скоротити Ваш ввідний SQL запит до одного " -"запиту, який власне і викликає проблеми, і відішліть повідомлення про " -"помилку з порцією даних у розділі CUT нижче:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Не закриті лапки" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Некоректний ідентифікатор" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Невідомий символ пунктуації" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6791,56 +6799,78 @@ msgstr "вкажіть розташування текстового файлу" msgid "web server upload directory" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"Не можу запустити перевірку SQL. Прошу проконтролювати чи інстальовані " -"необхідні PHP extensions як описано в %sдокументації%s." +"There seems to be an error in your SQL query. Повідомлення MySQL сервера про " +"помилку подане нижче (якщо є таке) також може допомогти Вам у визначенні " +"проблеми." -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" msgstr "" +"Можливо Ви знайшли помилку в парсері SQL. Прошу детальніше перевірити чи " +"коректно вжиті і не пропущені лапки у Вашому запиті. Іншою можливою причиною " +"помилки може бути те що Ви завантажили файл з двійковими даними розміщеними " +"поза взятим в лапки текстом. Спробуйте виконати Ваш запит за допомогою " +"оболонки MySQL з командної стрічки. Повідомлення MySQL сервера про помилку " +"подане нижче (якщо є таке) також може допомогти Вам у визначенні проблеми. " +"Якщо у Вас все ще виникають проблеми чи парсер видає помилку, а з командної " +"стрічки запити виконуються, прошу скоротити Ваш ввідний SQL запит до одного " +"запиту, який власне і викликає проблеми, і відішліть повідомлення про " +"помилку з порцією даних у розділі CUT нижче:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Не закриті лапки" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "Таблицю %s було перейменовано в %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Некоректний ідентифікатор" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Невідомий символ пунктуації" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"Не можу запустити перевірку SQL. Прошу проконтролювати чи інстальовані " +"необхідні PHP extensions як описано в %sдокументації%s." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -6883,8 +6913,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" -"sописи перетворень%s" +"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " +"%sописи перетворень%s" #: libraries/tbl_properties.inc.php:144 msgid "Transformation options" @@ -6966,38 +6996,6 @@ msgstr "" msgid "+ Add a value" msgstr "Додати нового користувача" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8052,8 +8050,8 @@ msgstr "Усунути бази даних, які мають такі ж наз msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " "MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " @@ -10296,8 +10294,8 @@ msgstr "" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %" -#~ "s запитів." +#~ "Статистика запитів: З моменту запуску, до сервера було надіслано " +#~ "%s запитів." #~ msgid "Chart generated successfully." #~ msgstr "Права успішно перезавантажено." diff --git a/po/ur.po b/po/ur.po index 819ae5d2498b..d4f7932509a4 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" +"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -47,13 +47,13 @@ msgstr "" msgid "Search" msgstr "تلاش" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -66,18 +66,18 @@ msgstr "تلاش" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "جائیں" @@ -125,7 +125,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "کوائفیہ تبصرہ:" @@ -135,9 +135,9 @@ msgstr "کوائفیہ تبصرہ:" msgid "Table comments" msgstr "جدول تبصرے" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -148,12 +148,12 @@ msgstr "جدول تبصرے" msgid "Column" msgstr "کالم" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -163,9 +163,9 @@ msgstr "کالم" msgid "Type" msgstr "قِسم" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -203,13 +203,12 @@ msgstr "ربط بطرف" msgid "Comments" msgstr "تبصرہ" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -220,17 +219,17 @@ msgstr "تبصرہ" msgid "No" msgstr "نہیں" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -267,79 +266,79 @@ msgstr "تمام انتخاب ختم کریں" msgid "The database name is empty!" msgstr "کوائفیہ نام خالی ہے!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "کوائفیہ %s() نام %s میں تبدیل ہوچکا ہے" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "کوائفیہ نام بدلیں" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "حکم" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "کوائفیہ ہٹائیں" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "کوائفیہ چھوڑیں (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "کوائفیہ نقل کریں بطرف" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "صرف ساخت" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "ساخت اور کوائف" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "کوائف صرف" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE نقل سے قبل" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "اضافہ کریں %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قدر اضافہ کریں" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "پابندیاں لگائیں" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "نقل شدہ کوائفیہ پر جائیں" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -348,7 +347,7 @@ msgstr "نقل شدہ کوائفیہ پر جائیں" msgid "Collation" msgstr "ترتیب" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -357,7 +356,7 @@ msgstr "" "phpMyAdmin کی تشکیل زخیرہبند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share%s " "کلک کریں۔" -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" @@ -504,108 +503,108 @@ msgstr "کوائفیہ کے لیے %s SQL طلب" msgid "Submit Query" msgstr "طلب بھیجیں" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: db_routines.php:165 +#: db_routines.php:167 #, php-format msgid "Execution results of routine %s" msgstr "" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, php-format msgid "The following query has failed: \"%s\"" msgstr "" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL نے کہا:" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "فرمایش عمل کرتے ہوئے نقص ہے" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "کوائیفیہ میں کوئی جدول نہیں ملا" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "طے شدہ برآمد کریں" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "غلط سرور اشاریہ: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Table %s has been dropped" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Created" msgid "Create routine" msgstr "تخلیق کیا گیا" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "تدوین موڈ" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import/csv.php:40 -msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import/csv.php:42 -#, fuzzy -#| msgid "Comments" -msgid "Column names: " -msgstr "آراء-رائے" +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" -#: libraries/import/csv.php:62 libraries/import/csv.php:75 -#: libraries/import/csv.php:80 libraries/import/csv.php:85 -#, php-format -msgid "Invalid parameter for CSV import: %s" +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" + +#: libraries/import/csv.php:42 +#, fuzzy +#| msgid "Comments" +msgid "Column names: " +msgstr "آراء-رائے" + +#: libraries/import/csv.php:62 libraries/import/csv.php:75 +#: libraries/import/csv.php:80 libraries/import/csv.php:85 +#, php-format +msgid "Invalid parameter for CSV import: %s" msgstr "" #: libraries/import/csv.php:132 @@ -6016,40 +6197,6 @@ msgstr "" msgid "This plugin does not support compressed imports!" msgstr "" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" @@ -6072,42 +6219,6 @@ msgid "" "the issue and try again." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "کوئی اشاریہ موجود نہیں!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "منفرد" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "باندھنا" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "درجہ تعلق داری" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "بنیادی کلید چھوڑ دیا گیا ہے" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "اشاریہ %s چھوڑ دیا گیا ہے" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "" -"اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا " -"جائے گا۔" - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6118,27 +6229,6 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d صف مناثر ہوئے۔" -msgstr[1] "%1$d صفیں متاثر ہوئیں۔" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d صف حذف ہوئے۔" -msgstr[1] "%1$d صفیں حذف ہوئیں۔" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d صف داخل ہوئی۔" -msgstr[1] "%1$d صفیں داخل ہوئیں۔" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fr" @@ -6379,24 +6469,6 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not open file: %s" -msgid "Could not save recent table" -msgstr "مسل نہیں کھول سکتا: %s" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "حداول کی گنتی کریں" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no files to upload" -msgid "There are no recent tables" -msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "" @@ -6778,57 +6850,6 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6886,53 +6907,62 @@ msgstr "" msgid "web server upload directory" msgstr "" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "اس ذخیرہ انجن کے متعلق تفصیلی معلومات موجود نہیں ہیں۔" +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s اس MySQL سرور میں دستیاب ہے۔" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "غلط کوائفیہ" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "غلط جدول نام" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 @@ -7041,38 +7071,6 @@ msgstr "" msgid "+ Add a value" msgstr "" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "کوئی پیش منظر دستیاب نہیں ہے۔" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "اسے لیں" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "طے شدہ خیالیہ %s نہیں ملا!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "خیالیہ %s نیہں ملا!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8054,8 +8052,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/uz.po b/po/uz.po index db5c35c629b9..08d61fa320ca 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" +"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "Қидириш" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "Қидириш" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" @@ -121,7 +121,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr " %1$s маълумотлар базаси тузилди." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ:" @@ -131,9 +131,9 @@ msgstr "Маълумотлар базасига изоҳ:" msgid "Table comments" msgstr "Жадвал изоҳи" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -144,12 +144,12 @@ msgstr "Жадвал изоҳи" msgid "Column" msgstr "Майдон номлари" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -159,9 +159,9 @@ msgstr "Майдон номлари" msgid "Type" msgstr "Тур" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -199,13 +199,12 @@ msgstr "Алоқалар" msgid "Comments" msgstr "Изоҳлар" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -216,17 +215,17 @@ msgstr "Изоҳлар" msgid "No" msgstr "Йўқ" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -263,83 +262,83 @@ msgstr "Белгилашни бекор қилиш" msgid "The database name is empty!" msgstr "Маълумотлар базаси номи бўш!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr " `\"%s\"` маълумотлар базасининг номи `\"%s\"` деб ўзгартирилди." -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди." -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Буйруқ" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr " \"%s\" маълумотлар омбори ўчирилди." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ушбу базага ўтиш" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Фақат тузилиши" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Фақат маълумотлар" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Чекловлар қўшиш" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Нусха олинган маълумотлар базасига ўтиш" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -348,7 +347,7 @@ msgstr "Нусха олинган маълумотлар базасига ўти msgid "Collation" msgstr "Таққослаш" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -360,7 +359,7 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -513,109 +512,109 @@ msgstr "\"%s\" маълумотлар базасига SQL-сўров: " msgid "Submit Query" msgstr "сўровни бажариш" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL сўрови муваффақиятли бажарилди" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Қуйидаги сўровлар бажарилди:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL жавоби: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Жараёнлар" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export functions" msgid "Export of routine %s" msgstr "Функцияларни экспорт қилиш" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Сервер рақами нотўғри: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "\"%s\" жадвали ўчирилди" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s жадвали тузилди." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Боғлиқлик ўрнатиш" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Таҳрирлаш усули" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" +"Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " +"бажаришингиз мумкин:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Ушбу базага ўтиш" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "танловлар" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Ушбу жадвалга ўтиш" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Ушбу кўринишга ўтиш" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 msgid "" "If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " @@ -6586,42 +6770,6 @@ msgstr "Майдон номлари" msgid "This plugin does not support compressed imports!" msgstr "Ушбу модул қисилган маълумотларни импорт қила олмайди!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" -"Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " -"бажаришингиз мумкин:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Ушбу базага ўтиш" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "танловлар" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Ушбу жадвалга ўтиш" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Ушбу кўринишга ўтиш" - #: libraries/import/ods.php:28 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" @@ -6655,40 +6803,6 @@ msgstr "" "Кўрсатилган XML файл ё нотўғри тузилган ё чала. Уни тўғирлаб, қайта ҳаракат " "қилиб кўринг." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Индекс белгиланмаган!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Уникал" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Қисилган" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Элементлар сони" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Бирламчи калит ўчирилди" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr " \"%s\" индекси ўчирилди" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6701,30 +6815,6 @@ msgstr "Йўқ" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, fuzzy, php-format -#| msgid "%1$d row(s) affected." -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d та қаторларга таъсир этди." -msgstr[1] "%1$d та қаторларга таъсир этди." - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "%1$d row(s) deleted." -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d та қаторлар ўчирилди." -msgstr[1] "%1$d та қаторлар ўчирилди." - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "%1$d row(s) inserted." -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d та қаторлар қўйилди." -msgstr[1] "%1$d та қаторлар қўйилди." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6969,24 +7059,6 @@ msgstr "Навигация ойнасини қайта юклаш" msgid "This format has no options" msgstr "Ушбу формат учун созланадиган параметр мавжуд эмас" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Cannot load or save configuration" -msgid "Could not save recent table" -msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Жадвалларни санаш" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Тайёр эмас" @@ -7392,68 +7464,6 @@ msgstr "Фарқ" msgid "Target database" msgstr "Нишон база" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"Эҳтимол, SQL сўровида хатолик мавжуд. Агар хато мавжуд бўлса, пастда MySQL " -"сервер хатоликни кўрсатади ва ўша хабар муаммо ечимини топишга ёрдам беради." - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"SQL ишида хатолик юз берди. Сўров тўғри тузилганлигига, унда хато ва " -"ёпилмаган қавс(лар) ёки қўштирноқ(лар) йўқлигига ишонч ҳосил қилинг. " -"Шунингдек, агар файл юкланган бўлса, унинг матнида қўштирноқ ичига олинмаган " -"бинар (иккилик) маълумотлар бўлиши мумкин. Сўровни MySQL буйруқлар сатридан " -"бажариб кўринг. Агар хато мавжуд бўлса, пастда MySQL сервер хатоликни " -"кўрсатади ва ўша хабар муаммо ечимини топишга ёрдам беради. Агар муаммо ҳал " -"бўлмаса, хатоликка олиб келаётган сўров қисмини аниқланг ва қуйида CUT " -"секциясидаги маълумотлар билан қўшиб, хато тавсифларини ишлаб чиқарувчиларга " -"юборинг:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "BEGIN CUT" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "END CUT" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "BEGIN RAW" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "END RAW" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "Ёпилмаган қўштирноқ" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "Нотўғри идентификатор" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "Номаълум пунктуация" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -7511,56 +7521,76 @@ msgstr "Файлни танлаш" msgid "web server upload directory" msgstr "Юклаш каталогидан" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар " -"ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг." +"Эҳтимол, SQL сўровида хатолик мавжуд. Агар хато мавжуд бўлса, пастда MySQL " +"сервер хатоликни кўрсатади ва ўша хабар муаммо ечимини топишга ёрдам беради." -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас. " +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"SQL ишида хатолик юз берди. Сўров тўғри тузилганлигига, унда хато ва " +"ёпилмаган қавс(лар) ёки қўштирноқ(лар) йўқлигига ишонч ҳосил қилинг. " +"Шунингдек, агар файл юкланган бўлса, унинг матнида қўштирноқ ичига олинмаган " +"бинар (иккилик) маълумотлар бўлиши мумкин. Сўровни MySQL буйруқлар сатридан " +"бажариб кўринг. Агар хато мавжуд бўлса, пастда MySQL сервер хатоликни " +"кўрсатади ва ўша хабар муаммо ечимини топишга ёрдам беради. Агар муаммо ҳал " +"бўлмаса, хатоликка олиб келаётган сўров қисмини аниқланг ва қуйида CUT " +"секциясидаги маълумотлар билан қўшиб, хато тавсифларини ишлаб чиқарувчиларга " +"юборинг:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олади." +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "BEGIN CUT" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверда фаолсизлантирилган." +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "END CUT" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди." +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "BEGIN RAW" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Нотўғри маълумотлар базаси" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "END RAW" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Жадвал номи нотўғри" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "Ёпилмаган қўштирноқ" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди." +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "Нотўғри идентификатор" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "Номаълум пунктуация" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар " +"ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг." #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7693,38 +7723,6 @@ msgstr "Бўлакларни (PARTITIONS) белгилаш" msgid "+ Add a value" msgstr "Янги фойдаланувчи қўшиш" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr " \"%s\" мавзуси расмларига тўғри йўл топилмади!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Олдиндан кўриш мумкин эмас." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "Тадбиқ қилиш" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr " \"%s\" асл мавзуси топилмади!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr " \"%s\" мавзуси топилмади!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr " \"%s\" мавзуси файлларига йўл топилмади!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8891,8 +8889,8 @@ msgstr "Фойдаланувчилар номлари билан аталган msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " "тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -9902,8 +9900,8 @@ msgstr "Очиқ файллар сони." #: server_status.php:934 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" -"\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" +"()\" функцияси ёрдамида очилган файлга айтилади." #: server_status.php:935 msgid "The number of tables that are open." @@ -10540,9 +10538,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -11479,8 +11477,8 @@ msgstr "Кўриниш номини ўзгартириш" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]" -#~ "\"FAQ 3.11\"[/a]га қаранг" +#~ "Тахминий бўлиши мумкин. [a@./Documentation." +#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг" #~ msgid "Bar type" #~ msgstr "Сўров тури" diff --git a/po/uz@latin.po b/po/uz@latin.po index b825af7e251e..53c938c4254a 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" +"Language: uz@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz@latin\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -45,13 +45,13 @@ msgstr "" msgid "Search" msgstr "Qidirish" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -64,18 +64,18 @@ msgstr "Qidirish" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" @@ -122,7 +122,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr " %1$s ma`lumotlar bazasi tuzildi." -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh:" @@ -132,9 +132,9 @@ msgstr "Ma`lumotlar bazasiga izoh:" msgid "Table comments" msgstr "Jadval izohi" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -145,12 +145,12 @@ msgstr "Jadval izohi" msgid "Column" msgstr "Maydon nomlari" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -160,9 +160,9 @@ msgstr "Maydon nomlari" msgid "Type" msgstr "Tur" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -200,13 +200,12 @@ msgstr "Aloqalar" msgid "Comments" msgstr "Izohlar" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -217,17 +216,17 @@ msgstr "Izohlar" msgid "No" msgstr "Yo‘q" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -264,83 +263,83 @@ msgstr "Belgilashni bekor qilish" msgid "The database name is empty!" msgstr "Ma`lumotlar bazasi nomi bo‘sh!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr " `\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi." -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "Buyruq" -#: db_operations.php:439 +#: db_operations.php:440 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr " \"%s\" ma`lumotlar ombori o‘chirildi." -#: db_operations.php:456 +#: db_operations.php:457 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ushbu bazaga o‘tish" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "Faqat tuzilishi" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "Faqat ma`lumotlar" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -349,7 +348,7 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" msgid "Collation" msgstr "Taqqoslash" -#: db_operations.php:564 +#: db_operations.php:565 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -361,7 +360,7 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: db_operations.php:599 +#: db_operations.php:600 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" @@ -514,109 +513,109 @@ msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: " msgid "Submit Query" msgstr "so‘rovni bajarish" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL so‘rovi muvaffaqiyatli bajarildi" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "Quyidagi so‘rovlar bajarildi:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL javobi: " -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Jarayonlar" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database." msgid "No routine with name %1$s found in database %2$s" msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export functions" msgid "Export of routine %s" msgstr "Funktsiyalarni eksport qilish" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "\"%s\" jadvali o‘chirildi" -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "Bog‘liqlik o‘rnatish" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Tahrirlash usuli" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" +"The following structures have either been created or altered. Here you can:" msgstr "" +"Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi " +"amallarni bajarishingiz mumkin:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing" + +#: libraries/import.lib.php:1143 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing" + +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring" + +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "Ushbu bazaga o‘tish" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "tanlovlar" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "Ushbu jadvalga o‘tish" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "Ushbu ko‘rinishga o‘tish" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "" + +#: libraries/import/csv.php:40 msgid "" "If the data in each row of the file is not in the same order as in the " "database, list the corresponding column names here. Column names must be " @@ -6614,42 +6798,6 @@ msgstr "Maydon nomlari" msgid "This plugin does not support compressed imports!" msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" -"Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi " -"amallarni bajarishingiz mumkin:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "Ushbu bazaga o‘tish" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "tanlovlar" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "Ushbu jadvalga o‘tish" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "Ushbu ko‘rinishga o‘tish" - #: libraries/import/ods.php:28 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" @@ -6683,40 +6831,6 @@ msgstr "" "Ko‘rsatilgan XML fayl yo noto‘g‘ri tuzilgan yo chala. Uni to‘g‘irlab, qayta " "harakat qilib ko‘ring." -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "Indeks belgilanmagan!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "Unikal" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "Qisilgan" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "Elementlar soni" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "Birlamchi kalit o‘chirildi" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr " \"%s\" indeksi o‘chirildi" - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." - #: libraries/kanji-encoding.lib.php:142 #, fuzzy #| msgid "None" @@ -6729,30 +6843,6 @@ msgstr "Yo‘q" msgid "Convert to Kana" msgstr "" -#: libraries/Message.class.php:260 -#, fuzzy, php-format -#| msgid "%1$d row(s) affected." -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "%1$d ta qatorlarga ta`sir etdi." -msgstr[1] "%1$d ta qatorlarga ta`sir etdi." - -#: libraries/Message.class.php:279 -#, fuzzy, php-format -#| msgid "%1$d row(s) deleted." -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d ta qatorlar o‘chirildi." -msgstr[1] "%1$d ta qatorlar o‘chirildi." - -#: libraries/Message.class.php:298 -#, fuzzy, php-format -#| msgid "%1$d row(s) inserted." -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d ta qatorlar qo‘yildi." -msgstr[1] "%1$d ta qatorlar qo‘yildi." - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6997,24 +7087,6 @@ msgstr "Navigatsiya oynasini qayta yuklash" msgid "This format has no options" msgstr "Ushbu format uchun sozlanadigan parametr mavjud emas" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Cannot load or save configuration" -msgid "Could not save recent table" -msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "Jadvallarni sanash" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "Tayyor emas" @@ -7422,6 +7494,63 @@ msgstr "Farq" msgid "Target database" msgstr "Nishon baza" +#: libraries/sql_query_form.lib.php:223 +#, php-format +msgid "Run SQL query/queries on server %s" +msgstr "\"%s\" serverida SQL-so‘rov(lar)ni bajarish " + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 +#, php-format +msgid "Run SQL query/queries on database %s" +msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish" + +#: libraries/sql_query_form.lib.php:296 navigation.php:302 +#: setup/frames/index.inc.php:231 +msgid "Clear" +msgstr "Tozalash" + +#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Column names" +msgid "Columns" +msgstr "Maydon nomlari" + +#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 +msgid "Bookmark this SQL query" +msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" + +#: libraries/sql_query_form.lib.php:343 sql.php:1021 +msgid "Let every user access this bookmark" +msgstr "Barcha foydalanuvchilarga ruxsat berish" + +#: libraries/sql_query_form.lib.php:349 +msgid "Replace existing bookmark of same name" +msgstr "Shu nomli xatcho‘pni almashtirish" + +#: libraries/sql_query_form.lib.php:365 +msgid "Do not overwrite this query from outside the window" +msgstr "So‘rovlar oynasi ichidagi ma`lumotlarni blokirovka qilish" + +#: libraries/sql_query_form.lib.php:372 +msgid "Delimiter" +msgstr "Taqsimlovchi" + +#: libraries/sql_query_form.lib.php:380 +msgid " Show this query here again " +msgstr "Ushbu so‘rovni qayta ko‘rsatish" + +#: libraries/sql_query_form.lib.php:443 +msgid "View only" +msgstr "Faqat ko‘rish" + +#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 +msgid "Location of the text file" +msgstr "Faylni tanlash" + +#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 +msgid "web server upload directory" +msgstr "Yuklash katalogidan" + #: libraries/sqlparser.lib.php:132 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " @@ -7485,63 +7614,6 @@ msgstr "Noto‘g‘ri identifikator" msgid "Unknown Punctuation String" msgstr "Noma`lum punktuatsiya" -#: libraries/sql_query_form.lib.php:223 -#, php-format -msgid "Run SQL query/queries on server %s" -msgstr "\"%s\" serverida SQL-so‘rov(lar)ni bajarish " - -#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 -#, php-format -msgid "Run SQL query/queries on database %s" -msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish" - -#: libraries/sql_query_form.lib.php:296 navigation.php:302 -#: setup/frames/index.inc.php:231 -msgid "Clear" -msgstr "Tozalash" - -#: libraries/sql_query_form.lib.php:301 -#, fuzzy -#| msgid "Column names" -msgid "Columns" -msgstr "Maydon nomlari" - -#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027 -msgid "Bookmark this SQL query" -msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" - -#: libraries/sql_query_form.lib.php:343 sql.php:1021 -msgid "Let every user access this bookmark" -msgstr "Barcha foydalanuvchilarga ruxsat berish" - -#: libraries/sql_query_form.lib.php:349 -msgid "Replace existing bookmark of same name" -msgstr "Shu nomli xatcho‘pni almashtirish" - -#: libraries/sql_query_form.lib.php:365 -msgid "Do not overwrite this query from outside the window" -msgstr "So‘rovlar oynasi ichidagi ma`lumotlarni blokirovka qilish" - -#: libraries/sql_query_form.lib.php:372 -msgid "Delimiter" -msgstr "Taqsimlovchi" - -#: libraries/sql_query_form.lib.php:380 -msgid " Show this query here again " -msgstr "Ushbu so‘rovni qayta ko‘rsatish" - -#: libraries/sql_query_form.lib.php:443 -msgid "View only" -msgstr "Faqat ko‘rish" - -#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241 -msgid "Location of the text file" -msgstr "Faylni tanlash" - -#: libraries/sql_query_form.lib.php:502 tbl_change.php:887 -msgid "web server upload directory" -msgstr "Yuklash katalogidan" - #: libraries/sqlvalidator.lib.php:67 #, php-format msgid "" @@ -7552,48 +7624,6 @@ msgstr "" "o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%s " "qarang." -#: libraries/StorageEngine.class.php:195 -msgid "" -"There is no detailed status information available for this storage engine." -msgstr "Ushbu turdagi jadvallar haqida qo‘shimcha ma`lumot mavjud emas. " - -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay oladi." - -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan." - -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi." - -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "Noto‘g‘ri ma`lumotlar bazasi" - -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "Jadval nomi noto‘g‘ri" - -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik" - -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi." - -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "" - #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" msgstr "Jadval - bo‘sh!" @@ -7725,38 +7755,6 @@ msgstr "Bo‘laklarni (PARTITIONS) belgilash" msgid "+ Add a value" msgstr "Yangi foydalanuvchi qo‘shish" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr " \"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "Oldindan ko‘rish mumkin emas." - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "Tadbiq qilish" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr " \"%s\" asl mavzusi topilmadi!" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr " \"%s\" mavzusi topilmadi!" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr " \"%s\" mavzusi fayllariga yo‘l topilmadi!" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 #, fuzzy #| msgid "" @@ -8935,8 +8933,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " "to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " @@ -10602,9 +10600,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -10618,9 +10616,9 @@ msgstr "" "real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog " "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " -"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/" -"kbd] deb belgilash tavsiya etiladi." +"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http" +"[/kbd] deb belgilash tavsiya etiladi." #: setup/lib/index.lib.php:270 #, fuzzy, php-format @@ -11544,8 +11542,8 @@ msgstr "Ko‘rinish nomini o‘zgartirish" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" -#~ "\"FAQ 3.11\"[/a]ga qarang" +#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation." +#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" #~ msgid "Bar type" #~ msgstr "So‘rov turi" diff --git a/po/zh_CN.po b/po/zh_CN.po index 0b6e52483767..60655086996d 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-08 05:00+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "搜索" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "搜索" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "执行" @@ -119,7 +119,7 @@ msgstr "该系统不支持 %s 文件,请访问 www.phpmyadmin.net 查询更多 msgid "Database %1$s has been created." msgstr "创建数据库 %1$s 成功。" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "数据库注释:" @@ -129,9 +129,9 @@ msgstr "数据库注释:" msgid "Table comments" msgstr "表注释" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -140,12 +140,12 @@ msgstr "表注释" msgid "Column" msgstr "字段" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -155,9 +155,9 @@ msgstr "字段" msgid "Type" msgstr "类型" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -195,13 +195,12 @@ msgstr "链接到" msgid "Comments" msgstr "注释" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -212,17 +211,17 @@ msgstr "注释" msgid "No" msgstr "否" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -259,79 +258,79 @@ msgstr "全不选" msgid "The database name is empty!" msgstr "数据库名不能为空!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "已将数据库 %s 改名为 %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "已将数据库 %s 复制为 %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "命令" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "删除数据库" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "已被删除数据库 %s 。" -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "删除数据库 (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "复制数据库到" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "仅结构" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "结构和数据" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "仅数据" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "添加 %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "添加自增 (AUTO_INCREMENT) 值" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "强制添加" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "切换到复制的数据库" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -340,14 +339,14 @@ msgstr "切换到复制的数据库" msgid "Collation" msgstr "整理" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此处%s。" -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "编辑或导出关系大纲" @@ -492,109 +491,109 @@ msgstr "在数据库 %s 执行 SQL 语句:" msgid "Submit Query" msgstr "提交查询" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "您的 SQL 语句已成功运行" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "允许运行存储过程。" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "下列查询被执行:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL 返回:" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "处理请求时发生错误" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "没有在数据库中找到表" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "导出选项" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "无效的服务器索引: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "已删除字段 %s " -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "创建数据表 %1$s 成功。" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "创建关系" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "编辑模式" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "文件首行包含数据表的字段名 (若未选此项,首行将被认为是数据)" +"The following structures have either been created or altered. Here you can:" +msgstr "下列结构被创建或修改。你可以:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "点击它的名字查看内容" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." -msgstr "" -"若文件每行的数据和数据库中的顺序不一致,请在此列出对应的字段名。字段名间用半" -"角逗号分隔且不能用引号括起。" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "点击相应的“选项”链接修改它的设置" -#: libraries/import/csv.php:42 -msgid "Column names: " -msgstr "字段名:" +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "点击“结构”链接编辑它的结构" -#: libraries/import/csv.php:62 libraries/import/csv.php:75 +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "转到数据库" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "设置" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "转到数据表" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "转到视图" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "文件首行包含数据表的字段名 (若未选此项,首行将被认为是数据)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" +"若文件每行的数据和数据库中的顺序不一致,请在此列出对应的字段名。字段名间用半" +"角逗号分隔且不能用引号括起。" + +#: libraries/import/csv.php:42 +msgid "Column names: " +msgstr "字段名:" + +#: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 #, php-format msgid "Invalid parameter for CSV import: %s" @@ -5991,40 +6167,6 @@ msgstr "字段名" msgid "This plugin does not support compressed imports!" msgstr "该插件不支持导入文件!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "下列结构被创建或修改。你可以:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "点击它的名字查看内容" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "点击相应的“选项”链接修改它的设置" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "点击“结构”链接编辑它的结构" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "转到数据库" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "设置" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "转到数据表" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "转到视图" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "导入百分数为小数 (如: 12.00% 将被导入为 .12)" @@ -6047,40 +6189,6 @@ msgid "" "the issue and try again." msgstr "该 XML 文件有错误或者不完整。请修复错误后重试。" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "没有已定义的索引!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "唯一" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "紧凑" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "基数" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "已删除主键" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "已删除索引 %s " - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除" - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6091,24 +6199,6 @@ msgstr "无" msgid "Convert to Kana" msgstr "转换为假名" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "影响了 %1$d 行。" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "删除了 %1$d 行。" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "插入了 %1$d 行。" - #: libraries/mult_submits.inc.php:254 msgid "From" msgstr "从" @@ -6347,24 +6437,6 @@ msgstr "刷新导航框架" msgid "This format has no options" msgstr "该格式没有选项" -#: libraries/RecentTable.class.php:114 -#, fuzzy -#| msgid "Could not save configuration" -msgid "Could not save recent table" -msgstr "无法保存设置" - -#: libraries/RecentTable.class.php:149 -#, fuzzy -#| msgid "Count tables" -msgid "Recent tables" -msgstr "统计数据表" - -#: libraries/RecentTable.class.php:155 -#, fuzzy -#| msgid "There are no configured servers" -msgid "There are no recent tables" -msgstr "没有配置好的服务器" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "错误" @@ -6740,65 +6812,6 @@ msgstr "差异" msgid "Target database" msgstr "目标数据库" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"您的 SQL 查询可能有错。如果可能的话,以下会列出 MySQL 服务器的错误输出,这可" -"能对您解决问题有一定的帮助。" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"您可能发现了 SQL 解析器的缺陷 (bug)。请仔细检查您的查询,包括引号是否正确及是" -"否匹配。其它可能的失败原因可能由于您上传了超过引用文本区域外的二进制数据。您" -"还可以在 MySQL 命令行界面试一下您的查询。如果可能的话,以下会列出 MySQL 服务" -"器的错误输出,这可能对您解决问题有一定的帮助。如果您仍然有问题,或者命令行界" -"面执行成功而解析器出错,请将您的 SQL 查询缩减到导致问题的某一条语句,然后和下" -"面剪切区中的数据一起提交一个缺陷 (bug) 报告:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "开始剪切" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "结束剪切" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "开始原文" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "结束原文" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "自动在查询结尾闭合了引号!" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "引号不配对" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "无效的标识符" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "未知的标点符号字符串" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6854,55 +6867,72 @@ msgstr "文本文件的位置" msgid "web server upload directory" msgstr "网站服务器上传文件夹" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。" +"您的 SQL 查询可能有错。如果可能的话,以下会列出 MySQL 服务器的错误输出,这可" +"能对您解决问题有一定的帮助。" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "没有该存储引擎的详细信息。" +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"您可能发现了 SQL 解析器的缺陷 (bug)。请仔细检查您的查询,包括引号是否正确及是" +"否匹配。其它可能的失败原因可能由于您上传了超过引用文本区域外的二进制数据。您" +"还可以在 MySQL 命令行界面试一下您的查询。如果可能的话,以下会列出 MySQL 服务" +"器的错误输出,这可能对您解决问题有一定的帮助。如果您仍然有问题,或者命令行界" +"面执行成功而解析器出错,请将您的 SQL 查询缩减到导致问题的某一条语句,然后和下" +"面剪切区中的数据一起提交一个缺陷 (bug) 报告:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "%s 在此 MySQL 服务器上可用。" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "开始剪切" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s 在此 MySQL 服务器上被禁止了。" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "结束剪切" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "此 MySQL 服务器不支持 %s 存储引擎。" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "开始原文" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "无效的数据库" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "结束原文" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "无效的数据表名" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "自动在查询结尾闭合了引号!" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "将表 %1$s 改名为 %2$s 时发生错误" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "引号不配对" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "已将数据表 %s 改名为 %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "无效的标识符" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "未知的标点符号字符串" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" +"SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -7014,38 +7044,6 @@ msgstr "分区定义" msgid "+ Add a value" msgstr "+ 添加" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "找不到主题 %s 对应的图片路径!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "没有可用的预览。" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "确定" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "未找到默认主题 %s !" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "未找到主题 %s !" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "找不到主题 %s 的路径" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8043,12 +8041,12 @@ msgstr "删除与用户同名的数据库。" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" -"s。" +"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" +"限%s。" #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10421,8 +10419,8 @@ msgstr "将视图改名为" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" +#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "添加新用户" diff --git a/po/zh_TW.po b/po/zh_TW.po index da85a9399c78..648203ee0d7b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-26 07:33-0400\n" +"POT-Creation-Date: 2011-06-27 10:29+0200\n" "PO-Revision-Date: 2011-06-19 09:59+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -44,13 +44,13 @@ msgstr "" msgid "Search" msgstr "搜尋" -#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420 -#: db_operations.php:530 db_operations.php:558 db_search.php:360 +#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 +#: db_operations.php:531 db_operations.php:559 db_search.php:360 #: db_structure.php:528 enum_editor.php:63 js/messages.php:90 +#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315 -#: libraries/common.lib.php:2245 libraries/Config.class.php:1220 -#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789 -#: libraries/db_routines.lib.php:921 +#: libraries/common.lib.php:2245 libraries/core.lib.php:557 +#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -63,18 +63,18 @@ msgstr "搜尋" #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384 #: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518 #: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777 -#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202 -#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265 -#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646 -#: server_privileges.php:1694 server_privileges.php:2051 -#: server_privileges.php:2098 server_privileges.php:2138 -#: server_replication.php:233 server_replication.php:316 -#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332 -#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260 -#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519 -#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291 -#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425 -#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99 +#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124 +#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128 +#: server_privileges.php:646 server_privileges.php:1694 +#: server_privileges.php:2051 server_privileges.php:2098 +#: server_privileges.php:2138 server_replication.php:233 +#: server_replication.php:316 server_replication.php:347 +#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024 +#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280 +#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581 +#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698 +#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "執行" @@ -119,7 +119,7 @@ msgstr "本系統不支援 %s 格式,詳情請參考 www.phpmyadmin.net" msgid "Database %1$s has been created." msgstr "建立資料庫 %1$s 成功" -#: db_datadict.php:48 db_operations.php:361 +#: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " msgstr "資料庫註釋:" @@ -129,9 +129,9 @@ msgstr "資料庫註釋:" msgid "Table comments" msgstr "表註釋" -#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248 -#: libraries/export/latex.php:375 libraries/export/odt.php:302 -#: libraries/export/texytext.php:227 libraries/Index.class.php:448 +#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448 +#: libraries/export/htmlword.php:248 libraries/export/latex.php:375 +#: libraries/export/odt.php:302 libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1236 #: libraries/schema/Pdf_Relation_Schema.class.php:1257 #: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86 @@ -140,12 +140,12 @@ msgstr "表註釋" msgid "Column" msgstr "欄位" -#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69 -#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691 -#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216 -#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249 -#: libraries/export/latex.php:375 libraries/export/odt.php:305 -#: libraries/export/texytext.php:228 libraries/Index.class.php:445 +#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445 +#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666 +#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847 +#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51 +#: libraries/export/htmlword.php:249 libraries/export/latex.php:375 +#: libraries/export/odt.php:305 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1237 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 #: libraries/tbl_properties.inc.php:100 server_privileges.php:2151 @@ -155,9 +155,9 @@ msgstr "欄位" msgid "Type" msgstr "類型" -#: db_datadict.php:169 libraries/export/htmlword.php:250 -#: libraries/export/latex.php:375 libraries/export/odt.php:308 -#: libraries/export/texytext.php:229 libraries/Index.class.php:451 +#: db_datadict.php:169 libraries/Index.class.php:451 +#: libraries/export/htmlword.php:250 libraries/export/latex.php:375 +#: libraries/export/odt.php:308 libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 #: libraries/tbl_properties.inc.php:109 tbl_change.php:325 @@ -195,13 +195,12 @@ msgstr "連結到" msgid "Comments" msgstr "註釋" -#: db_datadict.php:259 js/messages.php:109 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:361 +#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361 #: libraries/Index.class.php:388 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:287 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:130 #: server_privileges.php:1381 server_privileges.php:1392 @@ -212,17 +211,17 @@ msgstr "註釋" msgid "No" msgstr "否" -#: db_datadict.php:259 js/messages.php:108 -#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45 -#: libraries/config.values.php:51 libraries/export/htmlword.php:326 -#: libraries/export/latex.php:445 libraries/export/odt.php:376 -#: libraries/export/texytext.php:305 libraries/Index.class.php:362 +#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362 #: libraries/Index.class.php:387 libraries/Index.class.php:688 -#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 -#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92 -#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102 -#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276 -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/config.values.php:45 libraries/config.values.php:51 +#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326 +#: libraries/export/latex.php:445 libraries/export/odt.php:376 +#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46 +#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87 +#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97 +#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 +#: libraries/mult_submits.inc.php:299 #: libraries/schema/Pdf_Relation_Schema.class.php:1318 #: libraries/user_preferences.lib.php:311 prefs_manage.php:129 #: server_databases.php:76 server_privileges.php:1378 @@ -259,79 +258,79 @@ msgstr "全不選" msgid "The database name is empty!" msgstr "資料庫名不能爲空!" -#: db_operations.php:271 +#: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" msgstr "資料庫 %s 已變更名稱為 %s" -#: db_operations.php:275 +#: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" msgstr "已將資料庫 %s 複製爲 %s" -#: db_operations.php:403 +#: db_operations.php:404 msgid "Rename database to" msgstr "將資料庫改名為" -#: db_operations.php:408 server_status.php:799 +#: db_operations.php:409 server_status.php:799 msgid "Command" msgstr "命令" -#: db_operations.php:439 +#: db_operations.php:440 msgid "Remove database" msgstr "刪除資料庫" -#: db_operations.php:451 +#: db_operations.php:452 #, php-format msgid "Database %s has been dropped." msgstr "已被刪除資料庫 %s " -#: db_operations.php:456 +#: db_operations.php:457 msgid "Drop the database (DROP)" msgstr "刪除資料庫 (DROP)" -#: db_operations.php:486 +#: db_operations.php:487 msgid "Copy database to" msgstr "複製資料庫到" -#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418 +#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" msgstr "僅結構" -#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420 +#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" msgstr "結構和資料" -#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419 +#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" msgstr "僅資料" -#: db_operations.php:503 +#: db_operations.php:504 msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫 (CREATE DATABASE)" -#: db_operations.php:506 libraries/config/messages.inc.php:126 +#: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 #: libraries/config/messages.inc.php:135 tbl_operations.php:556 #, php-format msgid "Add %s" msgstr "新增 %s" -#: db_operations.php:510 libraries/config/messages.inc.php:119 +#: db_operations.php:511 libraries/config/messages.inc.php:119 #: tbl_operations.php:314 tbl_operations.php:558 msgid "Add AUTO_INCREMENT value" msgstr "新增自動遞增(AUTO_INCREMENT)數值" -#: db_operations.php:514 tbl_operations.php:565 +#: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" msgstr "新增 constraints" -#: db_operations.php:527 +#: db_operations.php:528 msgid "Switch to copied database" msgstr "切換到複製的資料庫" -#: db_operations.php:551 libraries/build_html_for_db.lib.php:19 -#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450 +#: db_operations.php:552 libraries/Index.class.php:450 +#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107 #: libraries/tbl_properties.inc.php:720 server_collations.php:53 #: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115 @@ -340,14 +339,14 @@ msgstr "切換到複製的資料庫" msgid "Collation" msgstr "排序規則" -#: db_operations.php:564 +#: db_operations.php:565 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原因." -#: db_operations.php:599 +#: db_operations.php:600 msgid "Edit or export relational schema" msgstr "編輯或匯出關聯大綱" @@ -492,109 +491,109 @@ msgstr "在資料庫 %s 執行 SQL 指令:" msgid "Submit Query" msgstr "送出查詢" -#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272 -#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139 +#: db_routines.php:154 import.php:453 libraries/Message.class.php:185 +#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "您的 SQL 語法已順利執行" -#: db_routines.php:155 +#: db_routines.php:157 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: db_routines.php:165 +#: db_routines.php:167 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "允許運行 Procedure" -#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678 +#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678 #: tbl_change.php:180 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)" -#: db_routines.php:190 db_routines.php:295 db_routines.php:300 -#: db_routines.php:324 +#: db_routines.php:192 db_routines.php:297 db_routines.php:302 +#: db_routines.php:326 #, fuzzy, php-format #| msgid "The following queries have been executed:" msgid "The following query has failed: \"%s\"" msgstr "下列查詢被執行:" -#: db_routines.php:191 db_routines.php:296 db_routines.php:301 -#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609 +#: db_routines.php:193 db_routines.php:298 db_routines.php:303 +#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609 msgid "MySQL said: " msgstr "MySQL 返回:" -#: db_routines.php:208 db_routines.php:240 db_routines.php:268 -#: db_routines.php:407 +#: db_routines.php:210 db_routines.php:242 db_routines.php:270 +#: db_routines.php:409 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "要求處理得程序中有錯誤" -#: db_routines.php:209 db_routines.php:241 db_routines.php:269 -#: db_routines.php:408 +#: db_routines.php:211 db_routines.php:243 db_routines.php:271 +#: db_routines.php:410 #, fuzzy, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "沒有在資料庫中找到表" -#: db_routines.php:230 db_routines.php:234 +#: db_routines.php:232 db_routines.php:236 msgid "Execute routine" msgstr "" -#: db_routines.php:259 db_routines.php:263 +#: db_routines.php:261 db_routines.php:265 #, fuzzy, php-format #| msgid "Export defaults" msgid "Export of routine %s" msgstr "匯出選項" -#: db_routines.php:288 libraries/db_routines.lib.php:960 +#: db_routines.php:290 libraries/db_routines.lib.php:960 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "無效的伺服器索引: %s" -#: db_routines.php:309 +#: db_routines.php:311 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: db_routines.php:310 +#: db_routines.php:312 msgid "The backed up query was:" msgstr "" -#: db_routines.php:314 +#: db_routines.php:316 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "已刪除欄位 %s " -#: db_routines.php:327 +#: db_routines.php:329 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "建立資料表 %1$s 成功" -#: db_routines.php:335 +#: db_routines.php:337 msgid "One or more errors have occured while processing your request:" msgstr "" -#: db_routines.php:379 +#: db_routines.php:381 #, fuzzy #| msgid "Create relation" msgid "Create routine" msgstr "建立關聯" -#: db_routines.php:383 +#: db_routines.php:385 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "編輯模式" -#: db_routines.php:434 +#: db_routines.php:436 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. The execution of some stored routines may fail!(if this is " -"unchecked, the first line will become part of the data)" -msgstr "檔案首行包含資料表的欄位名稱 (若未選此項,首行將被認爲是資料)" +"The following structures have either been created or altered. Here you can:" +msgstr "下列結構被建立或修改。您可以:" -#: libraries/import/csv.php:40 +#: libraries/import.lib.php:1142 +msgid "View a structure`s contents by clicking on its name" +msgstr "點選它的名字查看內容" + +#: libraries/import.lib.php:1143 msgid "" -"If the data in each row of the file is not in the same order as in the " -"database, list the corresponding column names here. Column names must be " -"separated by commas and not enclosed in quotations." -msgstr "" -"若檔案每行的資料和資料庫中的順序不一致,請在此列出對應的欄位名稱。欄位名稱間" -"用半角逗號分隔且不能用引號括起" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "點選相應的“選項”連結修改它的設定" -#: libraries/import/csv.php:42 -msgid "Column names: " -msgstr "欄位名稱:" +#: libraries/import.lib.php:1144 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "點選“結構”連結編輯它的結構" -#: libraries/import/csv.php:62 libraries/import/csv.php:75 +#: libraries/import.lib.php:1147 +msgid "Go to database" +msgstr "轉到資料庫" + +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 +msgid "settings" +msgstr "設定" + +#: libraries/import.lib.php:1169 +msgid "Go to table" +msgstr "轉到資料表" + +#: libraries/import.lib.php:1178 +msgid "Go to view" +msgstr "轉到 view" + +#: libraries/import/csv.php:38 libraries/import/ods.php:26 +#: libraries/import/xls.php:25 libraries/import/xlsx.php:25 +msgid "" +"The first line of the file contains the table column names (if this is " +"unchecked, the first line will become part of the data)" +msgstr "檔案首行包含資料表的欄位名稱 (若未選此項,首行將被認爲是資料)" + +#: libraries/import/csv.php:40 +msgid "" +"If the data in each row of the file is not in the same order as in the " +"database, list the corresponding column names here. Column names must be " +"separated by commas and not enclosed in quotations." +msgstr "" +"若檔案每行的資料和資料庫中的順序不一致,請在此列出對應的欄位名稱。欄位名稱間" +"用半角逗號分隔且不能用引號括起" + +#: libraries/import/csv.php:42 +msgid "Column names: " +msgstr "欄位名稱:" + +#: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 #, php-format msgid "Invalid parameter for CSV import: %s" @@ -5964,40 +6134,6 @@ msgstr "欄位名稱" msgid "This plugin does not support compressed imports!" msgstr "該插件不支援匯入檔案!" -#: libraries/import.lib.php:1141 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "下列結構被建立或修改。您可以:" - -#: libraries/import.lib.php:1142 -msgid "View a structure`s contents by clicking on its name" -msgstr "點選它的名字查看內容" - -#: libraries/import.lib.php:1143 -msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "點選相應的“選項”連結修改它的設定" - -#: libraries/import.lib.php:1144 -msgid "Edit its structure by following the \"Structure\" link" -msgstr "點選“結構”連結編輯它的結構" - -#: libraries/import.lib.php:1147 -msgid "Go to database" -msgstr "轉到資料庫" - -#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 -msgid "settings" -msgstr "設定" - -#: libraries/import.lib.php:1169 -msgid "Go to table" -msgstr "轉到資料表" - -#: libraries/import.lib.php:1178 -msgid "Go to view" -msgstr "轉到 view" - #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "匯入百分數爲小數 (如: 12.00% 將被匯入爲 .12)" @@ -6020,40 +6156,6 @@ msgid "" "the issue and try again." msgstr "該 XML 檔案有錯誤或者不完整。請修復錯誤後重試" -#: libraries/Index.class.php:430 tbl_relation.php:526 -msgid "No index defined!" -msgstr "沒有已定義的索引!" - -#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503 -#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606 -#: tbl_tracking.php:315 -msgid "Unique" -msgstr "唯一" - -#: libraries/Index.class.php:447 tbl_tracking.php:316 -msgid "Packed" -msgstr "緊湊" - -#: libraries/Index.class.php:449 tbl_tracking.php:318 -msgid "Cardinality" -msgstr "基數" - -#: libraries/Index.class.php:474 -msgid "The primary key has been dropped" -msgstr "已刪除主鍵" - -#: libraries/Index.class.php:478 -#, php-format -msgid "Index %s has been dropped" -msgstr "已刪除索引 %s " - -#: libraries/Index.class.php:582 -#, php-format -msgid "" -"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " -"removed." -msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除" - #: libraries/kanji-encoding.lib.php:142 msgctxt "None encoding conversion" msgid "None" @@ -6064,24 +6166,6 @@ msgstr "無" msgid "Convert to Kana" msgstr "轉換爲假名" -#: libraries/Message.class.php:260 -#, php-format -msgid "%1$d row affected." -msgid_plural "%1$d rows affected." -msgstr[0] "影響了 %1$d 行。" - -#: libraries/Message.class.php:279 -#, php-format -msgid "%1$d row deleted." -msgid_plural "%1$d rows deleted." -msgstr[0] "刪除了 %1$d 行。" - -#: libraries/Message.class.php:298 -#, php-format -msgid "%1$d row inserted." -msgid_plural "%1$d rows inserted." -msgstr[0] "插入了 %1$d 行。" - #: libraries/mult_submits.inc.php:254 #, fuzzy #| msgid "Fri" @@ -6322,18 +6406,6 @@ msgstr "重新整理導覽框架" msgid "This format has no options" msgstr "該格式沒有選項" -#: libraries/RecentTable.class.php:114 -msgid "Could not save recent table" -msgstr "無法儲存最新資料表" - -#: libraries/RecentTable.class.php:149 -msgid "Recent tables" -msgstr "最新資料表" - -#: libraries/RecentTable.class.php:155 -msgid "There are no recent tables" -msgstr "沒有最新資料表" - #: libraries/relation.lib.php:83 msgid "not OK" msgstr "錯誤" @@ -6707,65 +6779,6 @@ msgstr "差異" msgid "Target database" msgstr "目標資料庫" -#: libraries/sqlparser.lib.php:132 -msgid "" -"There seems to be an error in your SQL query. The MySQL server error output " -"below, if there is any, may also help you in diagnosing the problem" -msgstr "" -"您的 SQL 查詢可能有錯。如果可能的話,以下會列出 MySQL 伺服器的錯誤輸出,這可" -"能對您解決問題有一定的幫助" - -#: libraries/sqlparser.lib.php:167 -msgid "" -"There is a chance that you may have found a bug in the SQL parser. Please " -"examine your query closely, and check that the quotes are correct and not " -"mis-matched. Other possible failure causes may be that you are uploading a " -"file with binary outside of a quoted text area. You can also try your query " -"on the MySQL command line interface. The MySQL server error output below, if " -"there is any, may also help you in diagnosing the problem. If you still have " -"problems or if the parser fails where the command line interface succeeds, " -"please reduce your SQL query input to the single query that causes problems, " -"and submit a bug report with the data chunk in the CUT section below:" -msgstr "" -"您可能發現了 SQL 解析器的缺陷 (bug)。請仔細檢查您的查詢,包括引號是否正確及是" -"否符合。其它可能的失敗原因可能由於您上傳了超過引用文字區域外的二進制資料。您" -"還可以在 MySQL 命令行界面試一下您的查詢。如果可能的話,以下會列出 MySQL 服務" -"器的錯誤輸出,這可能對您解決問題有一定的幫助。如果您仍然有問題,或者命令行界" -"面執行成功而解析器出錯,請將您的 SQL 查詢縮減到導致問題的某一條指令,然後和下" -"面剪切區中的資料一起送出一個缺陷 (bug) 報告:" - -#: libraries/sqlparser.lib.php:169 -msgid "BEGIN CUT" -msgstr "開始剪切" - -#: libraries/sqlparser.lib.php:171 -msgid "END CUT" -msgstr "結束剪切" - -#: libraries/sqlparser.lib.php:173 -msgid "BEGIN RAW" -msgstr "開始原文" - -#: libraries/sqlparser.lib.php:177 -msgid "END RAW" -msgstr "結束原文" - -#: libraries/sqlparser.lib.php:363 -msgid "Automatically appended backtick to the end of query!" -msgstr "自動在查詢結尾閉合了引號!" - -#: libraries/sqlparser.lib.php:366 -msgid "Unclosed quote" -msgstr "引號不配對" - -#: libraries/sqlparser.lib.php:518 -msgid "Invalid Identifer" -msgstr "無效的識別符號" - -#: libraries/sqlparser.lib.php:635 -msgid "Unknown Punctuation String" -msgstr "未知的標點符號字元串" - #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" @@ -6821,55 +6834,72 @@ msgstr "文字檔案的位置" msgid "web server upload directory" msgstr "網站伺服器上傳資料夾" -#: libraries/sqlvalidator.lib.php:67 -#, php-format +#: libraries/sqlparser.lib.php:132 msgid "" -"The SQL validator could not be initialized. Please check if you have " -"installed the necessary PHP extensions as described in the %sdocumentation%s." +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" msgstr "" -"SQL 檢驗程序無法原始化。請檢查是否已經安裝了%s檔案%s內說明的必需 PHP 外掛" +"您的 SQL 查詢可能有錯。如果可能的話,以下會列出 MySQL 伺服器的錯誤輸出,這可" +"能對您解決問題有一定的幫助" -#: libraries/StorageEngine.class.php:195 +#: libraries/sqlparser.lib.php:167 msgid "" -"There is no detailed status information available for this storage engine." -msgstr "沒有該儲存引擎的詳細狀態資訊" +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" +"您可能發現了 SQL 解析器的缺陷 (bug)。請仔細檢查您的查詢,包括引號是否正確及是" +"否符合。其它可能的失敗原因可能由於您上傳了超過引用文字區域外的二進制資料。您" +"還可以在 MySQL 命令行界面試一下您的查詢。如果可能的話,以下會列出 MySQL 服務" +"器的錯誤輸出,這可能對您解決問題有一定的幫助。如果您仍然有問題,或者命令行界" +"面執行成功而解析器出錯,請將您的 SQL 查詢縮減到導致問題的某一條指令,然後和下" +"面剪切區中的資料一起送出一個缺陷 (bug) 報告:" -#: libraries/StorageEngine.class.php:355 -#, php-format -msgid "%s is available on this MySQL server." -msgstr "MySQL 伺服器支援 %s" +#: libraries/sqlparser.lib.php:169 +msgid "BEGIN CUT" +msgstr "開始剪切" -#: libraries/StorageEngine.class.php:358 -#, php-format -msgid "%s has been disabled for this MySQL server." -msgstr "%s 在此 MySQL 伺服器上被禁止了" +#: libraries/sqlparser.lib.php:171 +msgid "END CUT" +msgstr "結束剪切" -#: libraries/StorageEngine.class.php:362 -#, php-format -msgid "This MySQL server does not support the %s storage engine." -msgstr "此 MySQL 伺服器不支援 %s 儲存引擎" +#: libraries/sqlparser.lib.php:173 +msgid "BEGIN RAW" +msgstr "開始原文" -#: libraries/Table.class.php:1027 -msgid "Invalid database" -msgstr "無效的資料庫" +#: libraries/sqlparser.lib.php:177 +msgid "END RAW" +msgstr "結束原文" -#: libraries/Table.class.php:1041 tbl_get_field.php:25 -msgid "Invalid table name" -msgstr "無效的資料資料表名稱" +#: libraries/sqlparser.lib.php:363 +msgid "Automatically appended backtick to the end of query!" +msgstr "自動在查詢結尾閉合了引號!" -#: libraries/Table.class.php:1056 -#, php-format -msgid "Error renaming table %1$s to %2$s" -msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤" +#: libraries/sqlparser.lib.php:366 +msgid "Unclosed quote" +msgstr "引號不配對" -#: libraries/Table.class.php:1139 -#, php-format -msgid "Table %s has been renamed to %s" -msgstr "已將資料表 %s 改名爲 %s" +#: libraries/sqlparser.lib.php:518 +msgid "Invalid Identifer" +msgstr "無效的識別符號" -#: libraries/Table.class.php:1272 -msgid "Could not save table UI preferences" -msgstr "無法儲存表格介面使用者喜好設定" +#: libraries/sqlparser.lib.php:635 +msgid "Unknown Punctuation String" +msgstr "未知的標點符號字元串" + +#: libraries/sqlvalidator.lib.php:67 +#, php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." +msgstr "" +"SQL 檢驗程序無法原始化。請檢查是否已經安裝了%s檔案%s內說明的必需 PHP 外掛" #: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118 msgid "Table seems to be empty!" @@ -6981,38 +7011,6 @@ msgstr "分區定義" msgid "+ Add a value" msgstr "+ 增加" -#: libraries/Theme.class.php:160 -#, php-format -msgid "No valid image path for theme %s found!" -msgstr "找不到佈景主題 %s 指定圖片路徑!" - -#: libraries/Theme.class.php:380 -msgid "No preview available." -msgstr "沒有可用的預覽。" - -#: libraries/Theme.class.php:383 -msgid "take it" -msgstr "確定" - -#: libraries/Theme_Manager.class.php:109 -#, php-format -msgid "Default theme %s not found!" -msgstr "未找到預設主題 %s !" - -#: libraries/Theme_Manager.class.php:147 -#, php-format -msgid "Theme %s not found!" -msgstr "未找到主題 %s !" - -#: libraries/Theme_Manager.class.php:215 -#, php-format -msgid "Theme path not found for theme %s!" -msgstr "找不到主題 %s 的路徑" - -#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40 -msgid "Theme" -msgstr "" - #: libraries/transformations/application_octetstream__download.inc.php:9 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8010,8 +8008,8 @@ msgstr "刪除與使用者同名的資料庫" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表" "內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" @@ -10395,8 +10393,8 @@ msgstr "將 view改名爲" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" +#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "新增新使用者" diff --git a/querywindow.php b/querywindow.php index 0b92ad893b90..3e5207cc9e66 100644 --- a/querywindow.php +++ b/querywindow.php @@ -4,30 +4,6 @@ * this file is register_globals safe * * @todo move JavaScript out of here into .js files - * @uses $cfg['QueryWindowDefTab'] - * @uses $cfg['PropertiesIconic'] - * @uses $cfg['QueryHistoryDB'] - * @uses $cfg['Server']['user'] - * @uses $cfg['AllowUserDropDatabase'] - * @uses $cfg['Confirm'] - * @uses $GLOBALS['db'] - * @uses $GLOBALS['table'] - * @uses PMA_isSuperuser() - * @uses PMA_outBufferPre() - * @uses PMA_getRelationsParam() - * @uses PMA_isValid() - * @uses PMA_ifSetOr() - * @uses PMA_getHistory() - * @uses PMA_generate_common_url() - * @uses PMA_generate_common_hidden_inputs() - * @uses PMA_escapeJsString() - * @uses PMA_generate_html_tabs() - * @uses PMA_sqlQueryForm() - * @uses PMA_jsFormat() - * @uses in_array() - * @uses strlen() - * @uses preg_replace() - * @uses htmlspecialchars() * @package phpMyAdmin */ diff --git a/scripts/remove-incomplete-mo b/scripts/remove-incomplete-mo index d9e485c1e92f..ec7d3b3dd39e 100755 --- a/scripts/remove-incomplete-mo +++ b/scripts/remove-incomplete-mo @@ -8,7 +8,7 @@ set -e # # How many percent needs to be translated # -THRESHOLD=50 +THRESHOLD=40 # # Generated output file diff --git a/scripts/update-po b/scripts/update-po index 0475b6dd38f9..a12e59890b63 100755 --- a/scripts/update-po +++ b/scripts/update-po @@ -1,6 +1,6 @@ #!/bin/sh # vim: expandtab sw=4 ts=4 sts=4: -export LANG=C +export LC_ALL=C LOCS=`ls po/*.po | sed 's@.*/\(.*\)\.po@\1@'` xgettext \ -d phpmyadmin \ diff --git a/server_binlog.php b/server_binlog.php index b4915652f7bc..02b08005ed6b 100644 --- a/server_binlog.php +++ b/server_binlog.php @@ -3,25 +3,6 @@ /** * display the binary logs and the content of the selected * - * @uses $cfg['MainPageIconic'] - * @uses $cfg['NavigationBarIconic'] - * @uses $cfg['MaxRows'] - * @uses $cfg['LimitChars'] - * @uses $pmaThemeImage - * @uses $binary_logs - * @uses PMA_generate_common_hidden_inputs() - * @uses PMA_generate_common_url() - * @uses PMA_formatByteDown() - * @uses PMA_DBI_fetch_assoc() - * @uses PMA_strlen() - * @uses PMA_substr() - * @uses $_REQUEST['pos'] - * @uses $_REQUEST['log'] - * @uses $_REQUEST['dontlimitchars'] - * @uses count() - * @uses array_key_exists() - * @uses implode() - * @uses htmlspecialchars() * @package phpMyAdmin */ diff --git a/server_privileges.php b/server_privileges.php index cedbcef459c4..7cd802f23235 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -166,8 +166,8 @@ function PMA_RangeOfUsers($initial = '') // strtolower() is used because the User field // might be BINARY, so LIKE would be case sensitive if (!empty($initial)) { - $ret = " WHERE `User` LIKE '" . PMA_sqlAddslashes($initial) . "%'" - . " OR `User` LIKE '" . PMA_sqlAddslashes(strtolower($initial)) . "%'"; + $ret = " WHERE `User` LIKE '" . PMA_sqlAddSlashes($initial, true) . "%'" + . " OR `User` LIKE '" . PMA_sqlAddSlashes(strtolower($initial), true) . "%'"; } else { $ret = ''; } @@ -340,23 +340,23 @@ function PMA_displayPrivTable($db = '*', $table = '*', $submit = true) if ($db == '*') { $sql_query = "SELECT * FROM `mysql`.`user`" - ." WHERE `User` = '" . PMA_sqlAddslashes($username) . "'" - ." AND `Host` = '" . PMA_sqlAddslashes($hostname) . "';"; + ." WHERE `User` = '" . PMA_sqlAddSlashes($username) . "'" + ." AND `Host` = '" . PMA_sqlAddSlashes($hostname) . "';"; } elseif ($table == '*') { $sql_query = "SELECT * FROM `mysql`.`db`" - ." WHERE `User` = '" . PMA_sqlAddslashes($username) . "'" - ." AND `Host` = '" . PMA_sqlAddslashes($hostname) . "'" + ." WHERE `User` = '" . PMA_sqlAddSlashes($username) . "'" + ." AND `Host` = '" . PMA_sqlAddSlashes($hostname) . "'" ." AND '" . PMA_unescape_mysql_wildcards($db) . "'" ." LIKE `Db`;"; } else { $sql_query = "SELECT `Table_priv`" ." FROM `mysql`.`tables_priv`" - ." WHERE `User` = '" . PMA_sqlAddslashes($username) . "'" - ." AND `Host` = '" . PMA_sqlAddslashes($hostname) . "'" + ." WHERE `User` = '" . PMA_sqlAddSlashes($username) . "'" + ." AND `Host` = '" . PMA_sqlAddSlashes($hostname) . "'" ." AND `Db` = '" . PMA_unescape_mysql_wildcards($db) . "'" - ." AND `Table_name` = '" . PMA_sqlAddslashes($table) . "';"; + ." AND `Table_name` = '" . PMA_sqlAddSlashes($table) . "';"; } $row = PMA_DBI_fetch_single_row($sql_query); } @@ -420,13 +420,13 @@ function PMA_displayPrivTable($db = '*', $table = '*', $submit = true) 'SELECT `Column_name`, `Column_priv`' .' FROM `mysql`.`columns_priv`' .' WHERE `User`' - .' = \'' . PMA_sqlAddslashes($username) . "'" + .' = \'' . PMA_sqlAddSlashes($username) . "'" .' AND `Host`' - .' = \'' . PMA_sqlAddslashes($hostname) . "'" + .' = \'' . PMA_sqlAddSlashes($hostname) . "'" .' AND `Db`' - .' = \'' . PMA_sqlAddslashes(PMA_unescape_mysql_wildcards($db)) . "'" + .' = \'' . PMA_sqlAddSlashes(PMA_unescape_mysql_wildcards($db)) . "'" .' AND `Table_name`' - .' = \'' . PMA_sqlAddslashes($table) . '\';'); + .' = \'' . PMA_sqlAddSlashes($table) . '\';'); while ($row1 = PMA_DBI_fetch_row($res)) { $row1[1] = explode(',', $row1[1]); @@ -809,9 +809,9 @@ function PMA_displayLoginInformationFields($mode = 'new') if (isset($_REQUEST['change_copy'])) { $user_host_condition = ' WHERE `User`' - .' = \'' . PMA_sqlAddslashes($old_username) . "'" + .' = \'' . PMA_sqlAddSlashes($old_username) . "'" .' AND `Host`' - .' = \'' . PMA_sqlAddslashes($old_hostname) . '\';'; + .' = \'' . PMA_sqlAddSlashes($old_hostname) . '\';'; $row = PMA_DBI_fetch_single_row('SELECT * FROM `mysql`.`user` ' . $user_host_condition); if (! $row) { PMA_Message::notice(__('No user found.'))->display(); @@ -855,8 +855,8 @@ function PMA_displayLoginInformationFields($mode = 'new') break; } $sql = "SELECT '1' FROM `mysql`.`user`" - . " WHERE `User` = '" . PMA_sqlAddslashes($username) . "'" - . " AND `Host` = '" . PMA_sqlAddslashes($hostname) . "';"; + . " WHERE `User` = '" . PMA_sqlAddSlashes($username) . "'" + . " AND `Host` = '" . PMA_sqlAddSlashes($hostname) . "';"; if (PMA_DBI_fetch_value($sql) == 1) { $message = PMA_Message::error(__('The user %s already exists!')); $message->addParam('[i]\'' . $username . '\'@\'' . $hostname . '\'[/i]'); @@ -864,17 +864,17 @@ function PMA_displayLoginInformationFields($mode = 'new') $_add_user_error = true; } else { - $create_user_real = 'CREATE USER \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\''; + $create_user_real = 'CREATE USER \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\''; $real_sql_query = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON *.* TO \'' - . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\''; + . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\''; if ($pred_password != 'none' && $pred_password != 'keep') { $sql_query = $real_sql_query . ' IDENTIFIED BY \'***\''; - $real_sql_query .= ' IDENTIFIED BY \'' . PMA_sqlAddslashes($pma_pw) . '\''; + $real_sql_query .= ' IDENTIFIED BY \'' . PMA_sqlAddSlashes($pma_pw) . '\''; if (isset($create_user_real)) { $create_user_show = $create_user_real . ' IDENTIFIED BY \'***\''; - $create_user_real .= ' IDENTIFIED BY \'' . PMA_sqlAddslashes($pma_pw) . '\''; + $create_user_real .= ' IDENTIFIED BY \'' . PMA_sqlAddSlashes($pma_pw) . '\''; } } else { if ($pred_password == 'keep' && !empty($password)) { @@ -949,7 +949,7 @@ function PMA_displayLoginInformationFields($mode = 'new') case '1' : // Create database with same name and grant all privileges $q = 'CREATE DATABASE IF NOT EXISTS ' - . PMA_backquote(PMA_sqlAddslashes($username)) . ';'; + . PMA_backquote(PMA_sqlAddSlashes($username)) . ';'; $sql_query .= $q; if (! PMA_DBI_try_query($q)) { $message = PMA_Message::rawError(PMA_DBI_getError()); @@ -968,8 +968,8 @@ function PMA_displayLoginInformationFields($mode = 'new') } $q = 'GRANT ALL PRIVILEGES ON ' - . PMA_backquote(PMA_sqlAddslashes($username)) . '.* TO \'' - . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';'; + . PMA_backquote(PMA_sqlAddSlashes($username)) . '.* TO \'' + . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';'; $sql_query .= $q; if (! PMA_DBI_try_query($q)) { $message = PMA_Message::rawError(PMA_DBI_getError()); @@ -978,8 +978,8 @@ function PMA_displayLoginInformationFields($mode = 'new') case '2' : // Grant all privileges on wildcard name (username\_%) $q = 'GRANT ALL PRIVILEGES ON ' - . PMA_backquote(PMA_sqlAddslashes($username) . '\_%') . '.* TO \'' - . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';'; + . PMA_backquote(PMA_sqlAddSlashes($username) . '\_%') . '.* TO \'' + . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';'; $sql_query .= $q; if (! PMA_DBI_try_query($q)) { $message = PMA_Message::rawError(PMA_DBI_getError()); @@ -988,8 +988,8 @@ function PMA_displayLoginInformationFields($mode = 'new') case '3' : // Grant all privileges on the specified database to the new user $q = 'GRANT ALL PRIVILEGES ON ' - . PMA_backquote(PMA_sqlAddslashes($dbname)) . '.* TO \'' - . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';'; + . PMA_backquote(PMA_sqlAddSlashes($dbname)) . '.* TO \'' + . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';'; $sql_query .= $q; if (! PMA_DBI_try_query($q)) { $message = PMA_Message::rawError(PMA_DBI_getError()); @@ -1024,15 +1024,15 @@ function PMA_displayLoginInformationFields($mode = 'new') if (isset($_REQUEST['change_copy'])) { $user_host_condition = ' WHERE `User`' - .' = \'' . PMA_sqlAddslashes($old_username) . "'" + .' = \'' . PMA_sqlAddSlashes($old_username) . "'" .' AND `Host`' - .' = \'' . PMA_sqlAddslashes($old_hostname) . '\';'; + .' = \'' . PMA_sqlAddSlashes($old_hostname) . '\';'; $res = PMA_DBI_query('SELECT * FROM `mysql`.`db`' . $user_host_condition); while ($row = PMA_DBI_fetch_assoc($res)) { $queries[] = 'GRANT ' . join(', ', PMA_extractPrivInfo($row)) .' ON ' . PMA_backquote($row['Db']) . '.*' - .' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\'' + .' TO \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\'' . ($row['Grant_priv'] == 'Y' ? ' WITH GRANT OPTION;' : ';'); } PMA_DBI_free_result($res); @@ -1046,13 +1046,13 @@ function PMA_displayLoginInformationFields($mode = 'new') 'SELECT `Column_name`, `Column_priv`' .' FROM `mysql`.`columns_priv`' .' WHERE `User`' - .' = \'' . PMA_sqlAddslashes($old_username) . "'" + .' = \'' . PMA_sqlAddSlashes($old_username) . "'" .' AND `Host`' - .' = \'' . PMA_sqlAddslashes($old_hostname) . '\'' + .' = \'' . PMA_sqlAddSlashes($old_hostname) . '\'' .' AND `Db`' - .' = \'' . PMA_sqlAddslashes($row['Db']) . "'" + .' = \'' . PMA_sqlAddSlashes($row['Db']) . "'" .' AND `Table_name`' - .' = \'' . PMA_sqlAddslashes($row['Table_name']) . "'" + .' = \'' . PMA_sqlAddSlashes($row['Table_name']) . "'" .';', null, PMA_DBI_QUERY_STORE); @@ -1096,7 +1096,7 @@ function PMA_displayLoginInformationFields($mode = 'new') $queries[] = 'GRANT ' . join(', ', $tmp_privs1) . ' ON ' . PMA_backquote($row['Db']) . '.' . PMA_backquote($row['Table_name']) - . ' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\'' + . ' TO \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\'' . (in_array('Grant', explode(',', $row['Table_priv'])) ? ' WITH GRANT OPTION;' : ';'); } } @@ -1110,11 +1110,11 @@ function PMA_displayLoginInformationFields($mode = 'new') $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table - . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';'; + . ' FROM \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';'; if (! isset($Grant_priv) || $Grant_priv != 'Y') { $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table - . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';'; + . ' FROM \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';'; } else { $sql_query1 = ''; } @@ -1125,7 +1125,7 @@ function PMA_displayLoginInformationFields($mode = 'new') $sql_query2 = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON ' . $db_and_table - . ' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\''; + . ' TO \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\''; /** * @todo similar code appears twice in this script @@ -1186,10 +1186,10 @@ function PMA_displayLoginInformationFields($mode = 'new') $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table - . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';'; + . ' FROM \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';'; $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table - . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';'; + . ' FROM \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';'; PMA_DBI_query($sql_query0); if (! PMA_DBI_try_query($sql_query1)) { @@ -1229,8 +1229,8 @@ function PMA_displayLoginInformationFields($mode = 'new') . 'PASSWORD'; // in $sql_query which will be displayed, hide the password - $sql_query = 'SET PASSWORD FOR \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . preg_replace('@.@s', '*', $pma_pw) . '\')'); - $local_query = 'SET PASSWORD FOR \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . PMA_sqlAddslashes($pma_pw) . '\')'); + $sql_query = 'SET PASSWORD FOR \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . preg_replace('@.@s', '*', $pma_pw) . '\')'); + $local_query = 'SET PASSWORD FOR \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . PMA_sqlAddSlashes($pma_pw) . '\')'); PMA_DBI_try_query($local_query) or PMA_mysqlDie(PMA_DBI_getError(), $sql_query, false, $err_url); $message = PMA_Message::success(__('The password for %s was changed successfully.')); @@ -1254,7 +1254,7 @@ function PMA_displayLoginInformationFields($mode = 'new') foreach ($selected_usr as $each_user) { list($this_user, $this_host) = explode('&#27;', $each_user); $queries[] = '# ' . sprintf(__('Deleting %s'), '\'' . $this_user . '\'@\'' . $this_host . '\'') . ' ...'; - $queries[] = 'DROP USER \'' . PMA_sqlAddslashes($this_user) . '\'@\'' . PMA_sqlAddslashes($this_host) . '\';'; + $queries[] = 'DROP USER \'' . PMA_sqlAddSlashes($this_user) . '\'@\'' . PMA_sqlAddSlashes($this_host) . '\';'; if (isset($_REQUEST['drop_users_db'])) { $queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';'; @@ -1451,7 +1451,7 @@ function PMA_displayLoginInformationFields($mode = 'new') if (isset($_REQUEST['export'])) { echo '

' . __('User') . ' \'' . htmlspecialchars($username) . '\'@\'' . htmlspecialchars($hostname) . '\'

'; echo '